Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlanjc committed Mar 15, 2024
1 parent fbb47b2 commit 35c6767
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 33 deletions.
8 changes: 4 additions & 4 deletions pages/fiscal-sponsorship/about.js
@@ -1,12 +1,12 @@
import { Box, Card, Container, Flex, Link, Text } from 'theme-ui'
import { useEffect, useRef, useState } from 'react'
import { Box, Container, Flex, Link, Text } from 'theme-ui'
import { useEffect, useRef } from 'react'
import { keyframes } from '@emotion/react'
import FlexCol from '../../components/flex-col'
import Meta from '@hackclub/meta'
import Head from 'next/head'
import ForceTheme from '../../components/force-theme'
import Nav from '../../components/nav'
import HcbFooter from '../../components/fiscal-sponsorship/footer'
import Footer from '../../components/footer'
import Icon from '../../components/icon'
import Tilt from '../../components/tilt'

Expand Down Expand Up @@ -487,7 +487,7 @@ export default function FiscalSponsorship() {
}
}}
/>
<HcbFooter dark />
<Footer dark />
</Box>
)
}
18 changes: 9 additions & 9 deletions pages/fiscal-sponsorship/apply/index.js
@@ -1,18 +1,18 @@
import { useState, useRef } from 'react'
import { useRouter } from 'next/router'
import { Box, Text, Flex, Heading, Grid, Alert, Button } from 'theme-ui'
import ForceTheme from '../../../components/force-theme'
import { useRef, useState } from 'react'
import { Alert, Box, Button, Flex, Grid, Heading, Text } from 'theme-ui'
import Head from 'next/head'
import Link from 'next/link'
import Icon from '@hackclub/icons'
import Meta from '@hackclub/meta'
import { onSubmit } from '../../../components/fiscal-sponsorship/apply/submit'
import Watermark from '../../../components/fiscal-sponsorship/apply/watermark'
import HCBInfo from '../../../components/fiscal-sponsorship/apply/hcb-info'
import ContactBanner from '../../../components/fiscal-sponsorship/contact'
import ForceTheme from '../../../components/force-theme'
import FormContainer from '../../../components/fiscal-sponsorship/apply/form-container'
import HCBInfo from '../../../components/fiscal-sponsorship/apply/hcb-info'
import OrganizationInfoForm from '../../../components/fiscal-sponsorship/apply/org-form'
import PersonalInfoForm from '../../../components/fiscal-sponsorship/apply/personal-form'
import Icon from '@hackclub/icons'
import Link from 'next/link'
import { onSubmit } from '../../../components/fiscal-sponsorship/apply/submit'
import Watermark from '../../../components/fiscal-sponsorship/apply/watermark'
import ContactBanner from '../../../components/fiscal-sponsorship/contact'

export default function Apply() {
const router = useRouter()
Expand Down
3 changes: 1 addition & 2 deletions pages/fiscal-sponsorship/apply/success.js
@@ -1,7 +1,6 @@
import { useEffect } from 'react'
import { Box, Container, Text, Link, Flex, Image } from 'theme-ui'
import { Container, Text, Link, Image } from 'theme-ui'
import JSConfetti from 'js-confetti'
import Icon from '../../../components/icon'
import { Balancer } from 'react-wrap-balancer'

function fireConfetti() {
Expand Down
9 changes: 3 additions & 6 deletions pages/fiscal-sponsorship/climate/index.js
Expand Up @@ -5,23 +5,20 @@ import {
Flex,
Grid,
Heading,
Input,
Select
Input
} from 'theme-ui'
import Meta from '@hackclub/meta'
import Head from 'next/head'
import ForceTheme from '../../../components/force-theme'
import Nav from '../../../components/nav'
import HcbFooter from '../../../components/fiscal-sponsorship/footer'
import Footer from '../../../components/footer'
import MSparkles from '../../../components/sparkles/money'
import { Text, Button, Card } from 'theme-ui'
import Icon from '@hackclub/icons'
import OrganizationCard, {
Badge
} from '../../../components/fiscal-sponsorship/directory/card'
import Zoom from 'react-reveal/Zoom'
import fuzzysort from 'fuzzysort'
import ScrollHint from '../../../components/scroll-hint'
import { useEffect, useState } from 'react'
/** @jsxImportSource theme-ui */
import NextLink from 'next/link'
Expand Down Expand Up @@ -1214,7 +1211,7 @@ export default function ClimatePage({ rawOrganizations, pageRegion }) {
</Box>
</Box>
</Box>
<HcbFooter light key="footer" />
<Footer />
</div>
)
}
Expand Down
15 changes: 3 additions & 12 deletions pages/fiscal-sponsorship/first.js
@@ -1,19 +1,10 @@
import {
Box,
Heading,
Container,
Card,
Text,
Flex,
Button,
Badge
} from 'theme-ui'
import { Box, Heading, Container, Text, Button, Badge } from 'theme-ui'

import Meta from '@hackclub/meta'
import Head from 'next/head'
import ForceTheme from '../../components/force-theme'
import Nav from '../../components/nav'
import HcbFooter from '../../components/fiscal-sponsorship/footer'
import Footer from '../../components/footer'
import Icon from '../../components/icon'
import Features from '../../components/fiscal-sponsorship/first/features'

Expand Down Expand Up @@ -186,7 +177,7 @@ export default function First({ stats }) {
<Start stats={stats} />
</Box>
</Box>
<HcbFooter dark key="footer" />
<Footer dark />
</>
)
}
Expand Down

0 comments on commit 35c6767

Please sign in to comment.