From 754a697e2668e4f77105fff94e067a91e054698e Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 21 Jun 2026 18:18:51 +0000 Subject: [PATCH 1/2] Update src/components/sections/hero/HeroExpand.tsx --- src/components/sections/hero/HeroExpand.tsx | 32 ++++++--------------- 1 file changed, 9 insertions(+), 23 deletions(-) diff --git a/src/components/sections/hero/HeroExpand.tsx b/src/components/sections/hero/HeroExpand.tsx index a8206b6..527746e 100644 --- a/src/components/sections/hero/HeroExpand.tsx +++ b/src/components/sections/hero/HeroExpand.tsx @@ -1,5 +1,4 @@ import { useEffect, useRef, useState, useCallback } from 'react'; -import { motion, AnimatePresence } from 'framer-motion'; import { ChevronRight } from 'lucide-react'; interface HeroExpandProps { @@ -18,7 +17,7 @@ export default function HeroExpand({ onComplete }: HeroExpandProps) { const [isExpanded, setIsExpanded] = useState(false); - const timerRef = useRef(); + const timerRef = useRef(); const handleComplete = useCallback(() => { if (onComplete) onComplete(); @@ -37,34 +36,22 @@ export default function HeroExpand({ return (
- - - {title} - + - {description} - +

- )} - -
-
+
+ ); } -- 2.49.1 From be265a35d02809f1e9ca617e3d132afce4d24bff Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 21 Jun 2026 18:18:51 +0000 Subject: [PATCH 2/2] Update src/templates/hotel/page.tsx --- src/templates/hotel/page.tsx | 141 +++-------------------------------- 1 file changed, 9 insertions(+), 132 deletions(-) diff --git a/src/templates/hotel/page.tsx b/src/templates/hotel/page.tsx index a292581..b7b65bc 100644 --- a/src/templates/hotel/page.tsx +++ b/src/templates/hotel/page.tsx @@ -1,135 +1,12 @@ -import { ReactLenis } from "lenis/react"; -import { motion } from "motion/react"; -import { StyleProvider } from "@/components/ui/StyleProvider"; -import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; -import NavbarFullscreen from "@/components/ui/NavbarFullscreen"; -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 FooterBrand from "@/components/sections/footer/FooterBrand"; -import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; -import "./theme.css"; +import HeroExpand from '@/components/sections/hero/HeroExpand'; -export default function HotelTemplate() { +export default function HotelPage() { return ( - - - - - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
-
- -
- -
- - -
-
+ ); -} +} \ No newline at end of file -- 2.49.1