28 lines
768 B
TypeScript
28 lines
768 B
TypeScript
import { CallToAction } from '@/components/CallToAction'
|
|
import { Faqs } from '@/components/Faqs'
|
|
import { Footer } from '@/components/Footer'
|
|
import { Header_darkbg } from '@/components/Header_darkbg'
|
|
import { Quote } from '@/components/Quote'
|
|
import { AboutHero } from '@/components/AboutHero'
|
|
import { AboutMission } from '@/components/AboutMission'
|
|
import { AboutRecords } from '@/components/AboutRecords'
|
|
import { AboutExperience } from '@/components/AboutExperience'
|
|
|
|
export default function About() {
|
|
return (
|
|
<>
|
|
<Header_darkbg />
|
|
<main>
|
|
<AboutHero />
|
|
<AboutMission />
|
|
<AboutRecords />
|
|
<AboutExperience />
|
|
<Quote />
|
|
<CallToAction />
|
|
<Faqs />
|
|
</main>
|
|
<Footer />
|
|
</>
|
|
)
|
|
}
|