From 87bcca1af131849074016ff41d7cd1f40d009a27 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 22 Jun 2026 00:55:36 +0000 Subject: [PATCH] Switch to version 1: modified src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 107 ++++++++++++++++++++++++++++++++--------- 1 file changed, 84 insertions(+), 23 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 4030f40..98e8ff6 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,36 +1,97 @@ -// AUTO-GENERATED shell by per-section-migrate. -// Section bodies live in .//sections/.tsx. Edit the section -// files directly. Non-block content (wrappers, non-inlinable sections) is -// preserved inline; extracted section blocks become refs. - +import { motion } from "motion/react"; import { StyleProvider } from "@/components/ui/StyleProvider"; import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; -import React from 'react'; -import HeroSection from './HomePage/sections/Hero'; -import AboutSection from './HomePage/sections/About'; -import RoomsSection from './HomePage/sections/Rooms'; -import ExperienceSection from './HomePage/sections/Experience'; -import JourneysSection from './HomePage/sections/Journeys'; -import ContactSection from './HomePage/sections/Contact'; +import HeroExpand from "@/components/sections/hero/HeroExpand"; +import AboutParallax from "@/components/sections/about/AboutParallax"; +import FeaturesAttributeCards from "@/components/sections/features/FeaturesAttributeCards"; +import FeaturesMediaGrid from "@/components/sections/features/FeaturesMediaGrid"; +import FeaturesRevealCardsBento from "@/components/sections/features/FeaturesRevealCardsBento"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; - -import ReviewsSection from './HomePage/sections/Reviews';export default function HomePage(): React.JSX.Element { +export default function HomePage() { return ( - + - +
+ +
- +
+ +
- +
+ +
- +
+ +
- - +
+ +
- +
+ +
); -} +} \ No newline at end of file