mirror of
https://github.com/cfngc4594/monaco-editor-lsp-next.git
synced 2025-05-18 07:16:38 +00:00
Some checks failed
Build & Push Judge4c Docker Image / build-and-push-judge4c-docker-image (., Dockerfile, judge4c) (push) Failing after 1s
- 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 />
|
|
</>
|
|
)
|
|
}
|