Update src/app/page.tsx

This commit is contained in:
2026-04-07 05:09:37 +00:00
parent 4060a39150
commit aebf7f74cc

View File

@@ -4,7 +4,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureBento from '@/components/sections/feature/FeatureBento';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
@@ -29,8 +28,6 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Menu", id: "menu"},
{
name: "Order Now", id: "order"},
{
@@ -126,25 +123,6 @@ export default function LandingPage() {
/>
</div>
<div id="menu" data-section="menu">
<FaqSplitText
useInvertedBackground={false}
faqs={[
{
id: "1", title: "Rotis & Parathas", content: "Tava Roti (₹15), Ghee Roti (₹25), Aloo Paratha (₹60), Sattu Paratha (₹70)."},
{
id: "2", title: "Punjabi Dishes", content: "Bhindi Masala (₹150), Dal Tadka (₹140), Paneer Butter Masala (₹180)."},
{
id: "3", title: "Thalis", content: "Special Thali (₹150), Litti Chokha Thali (₹199), Dal Bhat Chokha (₹180)."},
{
id: "4", title: "Bihari Famous", content: "Litti Chokha (₹130), Chole Bhature (₹120)."},
]}
sideTitle="Menu"
sideDescription="Authentic Bihari Flavours"
faqsAnimation="blur-reveal"
/>
</div>
<div id="location" data-section="location">
<AboutMetric
useInvertedBackground={false}
@@ -207,4 +185,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}