monaco-editor-lsp-next/src/app/page.tsx

18 lines
424 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() {
return (
<>
<Header />
<HeroSection />
<PrimaryFeatures />
<FAQs />
<Footer />
</>
);
}