judge4c/src/app/(app)/page.tsx
cfngc4594 f2d14d07b2 feat(home): Add PrimaryFeatures component
- Add PrimaryFeatures component with MobileFriendlyCard, DockerCard, and LSPCard.
- Update HomePage to include PrimaryFeatures component between MainView and FAQs.
2025-04-17 21:42:58 +08:00

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 />
</>
)
}