mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-18 07:16:34 +00:00
- Add PrimaryFeatures component with MobileFriendlyCard, DockerCard, and LSPCard. - Update HomePage to include PrimaryFeatures component between MainView and FAQs.
18 lines
410 B
TypeScript
18 lines
410 B
TypeScript
import FAQs from "@/components/faqs";
|
|
import { Header } from "@/components/header";
|
|
import { Footer } from "@/components/footer";
|
|
import { MainView } from "@/components/main-view";
|
|
import { PrimaryFeatures } from "@/components/primary-features";
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<>
|
|
<Header />
|
|
<MainView />
|
|
<PrimaryFeatures />
|
|
<FAQs />
|
|
<Footer />
|
|
</>
|
|
)
|
|
}
|