mirror of
https://github.com/cfngc4594/monaco-editor-lsp-next.git
synced 2025-05-18 23:42:24 +00:00
18 lines
424 B
TypeScript
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 />
|
|
</>
|
|
);
|
|
}
|