From 51516dd428948698e5184450c49f9912f6e81e15 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 14 Jun 2026 13:50:06 +0000 Subject: [PATCH] Update src/templates/hotel/page.tsx --- src/templates/hotel/page.tsx | 147 ++++------------------------------- 1 file changed, 15 insertions(+), 132 deletions(-) diff --git a/src/templates/hotel/page.tsx b/src/templates/hotel/page.tsx index c7f35ec..14a75a4 100644 --- a/src/templates/hotel/page.tsx +++ b/src/templates/hotel/page.tsx @@ -1,136 +1,19 @@ -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 HeroVideoExpand from "@/components/sections/hero/HeroVideoExpand"; -import AboutParallax from "@/components/sections/about/AboutParallax"; -import FeaturesAttributeCards from "@/components/sections/features/FeaturesAttributeCards"; -import FeaturesMediaGrid from "@/components/sections/features/FeaturesMediaGrid"; -import FeaturesRevealCardsBentoSharp from "@/components/sections/features/FeaturesRevealCardsBentoSharp"; -import FooterBrand from "@/components/sections/footer/FooterBrand"; -import ContactSplitFormSharp from "@/components/sections/contact/ContactSplitFormSharp"; -import "./theme.css"; +import { useState } from 'react'; +import HeroVideoExpand from '@/components/sections/hero/HeroVideoExpand'; + +export default function HotelPage() { + const [showContent, setShowContent] = useState(false); -export default function HotelTemplate() { return ( - - - - - - - - -
- +
+ {!showContent ? ( + setShowContent(true)} /> + ) : ( +
+ {/* Page Content */} +

Welcome to our Hotel

- -
- -
- -
- -
- -
- -
- -
-
- -
- -
- - - - + )} +
); -} +} \ No newline at end of file -- 2.49.1