| 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> | |
| ); | |
| } | |