Next.js 14 website with standalone output configured for Docker deployment. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
27 lines
891 B
TypeScript
27 lines
891 B
TypeScript
import { Hero } from "@/components/home/Hero";
|
|
import { Manifesto } from "@/components/home/Manifesto";
|
|
import { ExperienceGrid } from "@/components/home/ExperienceGrid";
|
|
import { InteractiveMap } from "@/components/home/InteractiveMap";
|
|
import { WhyAsianSide } from "@/components/home/WhyAsianSide";
|
|
import { HowItWorks } from "@/components/home/HowItWorks";
|
|
import { Testimonials } from "@/components/home/Testimonials";
|
|
import { HomeFAQ } from "@/components/home/HomeFAQ";
|
|
import { FinalCTA } from "@/components/home/FinalCTA";
|
|
import { StickyBookingBar } from "@/components/layout/StickyBookingBar";
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<>
|
|
<Hero />
|
|
<Manifesto />
|
|
<ExperienceGrid />
|
|
<InteractiveMap />
|
|
<WhyAsianSide />
|
|
<HowItWorks />
|
|
<Testimonials />
|
|
<HomeFAQ />
|
|
<FinalCTA />
|
|
<StickyBookingBar />
|
|
</>
|
|
);
|
|
}
|