MachinaCheck / app /page.tsx
sarmaddev's picture
added docker and nextjs app
3318ac7
raw
history blame contribute delete
693 Bytes
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>
);
}