File size: 693 Bytes
3318ac7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | import { Navbar } from "@/components/landing/navbar";
import { Hero } from "@/components/landing/hero";
import { Features } from "@/components/landing/features";
import { Workflow } from "@/components/landing/workflow";
import { DashboardPreview } from "@/components/landing/dashboard-preview";
import { CTA } from "@/components/landing/cta";
import { Footer } from "@/components/landing/footer";
export default function Home() {
return (
<div className="flex flex-col min-h-screen">
<Navbar />
<main className="flex-1">
<Hero />
<Features />
<Workflow />
<DashboardPreview />
<CTA />
</main>
<Footer />
</div>
);
}
|