From b4084abe4c92aa510c1fe42b60dc445d11a7b246 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 08:45:36 +0000 Subject: [PATCH] Switch to version 7: modified src/app/page.tsx --- src/app/page.tsx | 331 +++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 306 insertions(+), 25 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9783eaa..5de4ad2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,28 +1,309 @@ -export default function Home() { +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import HeroLogo from "@/components/sections/hero/HeroLogo"; +import FeatureCardNine from "@/components/sections/feature/FeatureCardNine"; +import ProductCardOne from "@/components/sections/product/ProductCardOne"; +import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; +import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne"; +import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterCard from "@/components/sections/footer/FooterCard"; +import Link from "next/link"; +import { + Coffee, + Star, + Users, + TrendingUp, + MapPin, + Instagram, + Facebook, + Phone, +} from "lucide-react"; + +export default function HomePage() { return ( -
-
-
-
-
-
-
-

- Welcome to The Ora Cafe -

-

- Discover Bhilwara's most beloved rooftop dining destination. Enjoy fusion cuisine, cozy vibes, and stunning views that make every moment unforgettable. -

-
- - Explore Now - - - View Menu - -
-
+ + {/* Navbar */} + -
+ + {/* Hero Section */} +
+ +
+ + {/* Why People Love Ora Cafe */} +
+ +
+ + {/* Popular Dishes */} + + + {/* Rooftop Experience */} +
+ +
+ + {/* Gallery */} + + + {/* Customer Reviews */} +
+ +
+ + {/* Contact & Reservation */} +
+ +
+ + {/* Footer */} + + ); -} \ No newline at end of file +}