mirror of
https://github.com/System-End/site.git
synced 2026-04-19 23:22:49 +00:00
🐛 Fix rel paths
This commit is contained in:
parent
4d6937f1eb
commit
320a8a5688
3 changed files with 14 additions and 15 deletions
|
|
@ -1,19 +1,19 @@
|
|||
import { useEffect, useState, useRef } from 'react'
|
||||
import { useRouter } from 'next/router'
|
||||
import { Box, Flex, Text } from 'theme-ui'
|
||||
import ForceTheme from '../../components/force-theme'
|
||||
import ForceTheme from '../../../components/force-theme'
|
||||
import Head from 'next/head'
|
||||
import Meta from '@hackclub/meta'
|
||||
import FlexCol from '../../components/flex-col'
|
||||
import Progress from '../../components/hcb/apply/progress'
|
||||
import NavButton from '../../components/hcb/apply/nav-button'
|
||||
import Watermark from '../../components/hcb/apply/watermark'
|
||||
import FormContainer from '../../components/hcb/apply/form-container'
|
||||
import HCBInfo from '../../components/hcb/apply/hcb-info'
|
||||
import OrganizationInfoForm from '../../components/hcb/apply/org-form'
|
||||
import PersonalInfoForm from '../../components/hcb/apply/personal-form'
|
||||
import AlertModal from '../../components/hcb/apply/alert-modal'
|
||||
import { geocode } from '../../lib/hcb/apply/address-validation'
|
||||
import FlexCol from '../../../components/flex-col'
|
||||
import Progress from '../../../components/hcb/apply/progress'
|
||||
import NavButton from '../../../components/hcb/apply/nav-button'
|
||||
import Watermark from '../../../components/hcb/apply/watermark'
|
||||
import FormContainer from '../../../components/hcb/apply/form-container'
|
||||
import HCBInfo from '../../../components/hcb/apply/hcb-info'
|
||||
import OrganizationInfoForm from '../../../components/hcb/apply/org-form'
|
||||
import PersonalInfoForm from '../../../components/hcb/apply/personal-form'
|
||||
import AlertModal from '../../../components/hcb/apply/alert-modal'
|
||||
import { geocode } from '../../../lib/hcb/apply/address-validation'
|
||||
|
||||
const valiadateAddress = async step => {
|
||||
// Validate the address
|
||||
|
|
|
|||
|
|
@ -11,10 +11,10 @@ import {
|
|||
Flex,
|
||||
Image
|
||||
} from 'theme-ui'
|
||||
import ForceTheme from '../../components/force-theme'
|
||||
import ForceTheme from '../../../components/force-theme'
|
||||
import JSConfetti from 'js-confetti'
|
||||
import Icon from '../../components/icon'
|
||||
import FlexCol from '../../components/flex-col'
|
||||
import Icon from '../../../components/icon'
|
||||
import FlexCol from '../../../components/flex-col'
|
||||
|
||||
function Option({ icon, label, link }) {
|
||||
const color =
|
||||
|
|
|
|||
|
|
@ -199,7 +199,6 @@ export default function First({ stats }) {
|
|||
export async function getStaticProps(context) {
|
||||
const res = await fetch(`https://hcb.hackclub.com/stats`)
|
||||
const stats = await res.json()
|
||||
console.log(stats)
|
||||
|
||||
return {
|
||||
props: {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue