- Redesigned configurator page with split-screen interface - Left: Large visual preview with sticky positioning - Right: Premium white controls container with form steps - Added complete configurator wizard (5 steps) - Updated hero CTA to "Zelf ontwerpen" - Configured Shadcn UI with Slate theme - Added layout components (Navbar, Footer) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
18 lines
507 B
TypeScript
18 lines
507 B
TypeScript
import { Hero } from "@/components/home/hero";
|
|
import { OfferSection } from "@/components/home/offer-section";
|
|
import { ProcessSection } from "@/components/home/process-section";
|
|
import { AboutSection } from "@/components/home/about-section";
|
|
import { CraftsmanshipSection } from "@/components/home/craftsmanship-section";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<Hero />
|
|
<OfferSection />
|
|
<ProcessSection />
|
|
<AboutSection />
|
|
<CraftsmanshipSection />
|
|
</>
|
|
);
|
|
}
|