mirror of
https://github.com/massbug/judge4c.git
synced 2025-07-04 07:40:51 +00:00
16 lines
395 B
TypeScript
16 lines
395 B
TypeScript
|
import { FAQs } from "@/components/faqs";
|
||
|
import { Header } from "@/components/header";
|
||
|
import { Footer } from "@/components/footer";
|
||
|
import { HeroSection } from "@/components/hero-section";
|
||
|
import { PrimaryFeatures } from "@/components/primary-features";
|
||
|
|
||
|
export default function RootPage() {
|
||
|
<>
|
||
|
<Header />
|
||
|
<HeroSection />
|
||
|
<PrimaryFeatures />
|
||
|
<FAQs />
|
||
|
<Footer />
|
||
|
</>;
|
||
|
}
|