mika-agent-assist/src/routes/index.tsx
gpt-engineer-app[bot] 52c43fd510 Changes
Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
2026-04-17 16:51:56 +00:00

28 lines
913 B
TypeScript

import { createFileRoute } from "@tanstack/react-router";
import { LandingHeader } from "@/components/mika/LandingHeader";
import { HeroSection } from "@/components/mika/HeroSection";
import { FeaturesSection } from "@/components/mika/FeaturesSection";
import { HowItWorksSection } from "@/components/mika/HowItWorksSection";
import { PlansSection } from "@/components/mika/PlansSection";
import { FaqSection } from "@/components/mika/FaqSection";
import { LandingFooter } from "@/components/mika/LandingFooter";
export const Route = createFileRoute("/")({
component: LandingPage,
});
function LandingPage() {
return (
<div className="min-h-screen bg-background text-foreground">
<LandingHeader />
<main>
<HeroSection />
<FeaturesSection />
<HowItWorksSection />
<PlansSection />
<FaqSection />
</main>
<LandingFooter />
</div>
);
}