mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
feat: assemble all sections into landing page
This commit is contained in:
@@ -1,7 +1,27 @@
|
|||||||
|
import { ApiCallout } from "@/components/api-callout";
|
||||||
|
import { BentoGrid } from "@/components/bento-grid";
|
||||||
|
import { Enterprise } from "@/components/enterprise";
|
||||||
|
import { Footer } from "@/components/footer";
|
||||||
|
import { Hero } from "@/components/hero";
|
||||||
|
import { HowItWorks } from "@/components/how-it-works";
|
||||||
|
import { Navbar } from "@/components/navbar";
|
||||||
|
import { OpenSource } from "@/components/open-source";
|
||||||
|
import { ValueProps } from "@/components/value-props";
|
||||||
|
|
||||||
export default function Home() {
|
export default function Home() {
|
||||||
return (
|
return (
|
||||||
<main>
|
<>
|
||||||
<h1 className="text-4xl font-bold text-center py-40">SnapOtter</h1>
|
<Navbar />
|
||||||
</main>
|
<main>
|
||||||
|
<Hero />
|
||||||
|
<ValueProps />
|
||||||
|
<BentoGrid />
|
||||||
|
<Enterprise />
|
||||||
|
<HowItWorks />
|
||||||
|
<ApiCallout />
|
||||||
|
<OpenSource />
|
||||||
|
</main>
|
||||||
|
<Footer />
|
||||||
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user