Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot] 2026-04-17 16:51:56 +00:00
parent faa10d9a72
commit 52c43fd510
2 changed files with 65 additions and 35 deletions

View file

@ -1,26 +1,28 @@
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: Index,
component: LandingPage,
});
// IMPORTANT: Replace this placeholder. For sites with multiple pages (About, Services, Contact, etc.),
// create separate route files (about.tsx, services.tsx, contact.tsx) — don't put all pages in this file.
function PlaceholderIndex() {
function LandingPage() {
return (
<div
className="flex min-h-screen items-center justify-center"
style={{ backgroundColor: "#fcfbf8" }}
>
<img
data-lovable-blank-page-placeholder="REMOVE_THIS"
src="https://cdn.gpteng.co/blank-app-v1.svg"
alt="Your app will live here!"
/>
<div className="min-h-screen bg-background text-foreground">
<LandingHeader />
<main>
<HeroSection />
<FeaturesSection />
<HowItWorksSection />
<PlansSection />
<FaqSection />
</main>
<LandingFooter />
</div>
);
}
function Index() {
return <PlaceholderIndex />;
}