Update src/app/page.tsx

This commit is contained in:
2026-04-06 06:43:24 +00:00
parent e5a7695483
commit 21f4d724f5

View File

@@ -6,7 +6,6 @@ import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import LegalSection from '@/components/legal/LegalSection';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
@@ -28,39 +27,23 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Menu",
id: "/menu",
},
{
name: "About",
id: "/about",
},
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "About", id: "/about" },
]}
brandName="Lebanese Point"
button={{ text: "Order Now", href: "https://swiggy.com" }}
/>
</div>
<div id="hero" data-section="hero">
<HeroLogoBillboard
background={{
variant: "sparkles-gradient",
}}
background={{ variant: "sparkles-gradient" }}
logoText="Lebanese Point"
description="Experience Real Lebanese Flavours in the Heart of Saket. From perfectly grilled platters to iconic shawarmas — Lebanese Point brings bold, authentic taste."
buttons={[
{
text: "Order Now",
href: "https://swiggy.com",
},
{
text: "View Menu",
href: "/menu",
},
{ text: "Order Now", href: "https://swiggy.com" },
{ text: "View Menu", href: "/menu" },
]}
imageSrc="http://img.b2bpic.net/free-photo/close-up-azerbaijani-tea-setup-with-pakhlava-samovar-jams-nuts_140725-8684.jpg"
mediaAnimation="slide-up"
@@ -73,56 +56,11 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
features={[
{
id: "f1",
label: "Quality",
title: "Authentic Taste",
items: [
"Bold spices",
"Real ingredients",
"Traditional recipes",
],
},
{
id: "f2",
label: "Portion",
title: "Generous Portions",
items: [
"Value-for-money",
"Satisfying platters",
"Freshly cooked",
],
},
{
id: "f3",
label: "Choice",
title: "Variety for Everyone",
items: [
"Veg options",
"Non-veg variety",
"Healthy sides",
],
},
{
id: "f4",
label: "Speed",
title: "Quick Service",
items: [
"Rapid prep",
"Fresh to go",
"Efficient delivery",
],
},
{
id: "f5",
label: "Experience",
title: "Warm Atmosphere",
items: [
"Cozy seating",
"Friendly staff",
"Authentic vibe",
],
},
{ id: "f1", label: "Quality", title: "Authentic Taste", items: ["Bold spices", "Real ingredients", "Traditional recipes"] },
{ id: "f2", label: "Portion", title: "Generous Portions", items: ["Value-for-money", "Satisfying platters", "Freshly cooked"] },
{ id: "f3", label: "Choice", title: "Variety for Everyone", items: ["Veg options", "Non-veg variety", "Healthy sides"] },
{ id: "f4", label: "Speed", title: "Quick Service", items: ["Rapid prep", "Fresh to go", "Efficient delivery"] },
{ id: "f5", label: "Experience", title: "Warm Atmosphere", items: ["Cozy seating", "Friendly staff", "Authentic vibe"] },
]}
title="Why People Love Us"
description="True Lebanese recipes with bold spices and real ingredients."
@@ -133,31 +71,11 @@ export default function LandingPage() {
<TestimonialCardTwelve
useInvertedBackground={false}
testimonials={[
{
id: "1",
name: "Sarah J.",
imageSrc: "http://img.b2bpic.net/free-photo/indian-man-smiling-restaurant-concept_53876-13779.jpg?_wi=1",
},
{
id: "2",
name: "Michael C.",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-senior-with-delicious-food_23-2150854212.jpg?_wi=1",
},
{
id: "3",
name: "Emily R.",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-arrangement-with-different-feelings_23-2148860243.jpg?_wi=1",
},
{
id: "4",
name: "David K.",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5054.jpg?_wi=1",
},
{
id: "5",
name: "Priya S.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-people-work_23-2149097885.jpg?_wi=1",
},
{ id: "1", name: "Sarah J.", imageSrc: "http://img.b2bpic.net/free-photo/indian-man-smiling-restaurant-concept_53876-13779.jpg" },
{ id: "2", name: "Michael C.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-senior-with-delicious-food_23-2150854212.jpg" },
{ id: "3", name: "Emily R.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-arrangement-with-different-feelings_23-2148860243.jpg" },
{ id: "4", name: "David K.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5054.jpg" },
{ id: "5", name: "Priya S.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-people-work_23-2149097885.jpg" },
]}
cardTitle="What Our Locals Say"
cardTag="Loved by Locals"
@@ -165,51 +83,14 @@ export default function LandingPage() {
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="section"
title="Terms and Policies"
sections={[
{
heading: "General Terms",
content: {
type: "paragraph",
text: "By accessing our website and ordering our food, you agree to comply with all local health and safety regulations.",
},
},
{
heading: "Reservation Policy",
content: {
type: "list",
items: [
"All reservations are held for 15 minutes",
"Please inform us of allergies",
"Private events require 48-hour notice",
],
},
},
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
useInvertedBackground={false}
title="Visit Us in Saket"
description="Ground Floor, PVR Anupam, Saket, New Delhi. Open till Midnight."
inputs={[
{
name: "name",
type: "text",
placeholder: "Your Name",
required: true,
},
{
name: "email",
type: "email",
placeholder: "Your Email",
required: true,
},
{ name: "name", type: "text", placeholder: "Your Name", required: true },
{ name: "email", type: "email", placeholder: "Your Email", required: true },
]}
imageSrc="http://img.b2bpic.net/free-photo/cozy-woman-setting-table-kitchen_23-2148717783.jpg"
/>
@@ -219,45 +100,13 @@ export default function LandingPage() {
<FooterBaseReveal
logoText="Lebanese Point"
columns={[
{
title: "Navigation",
items: [
{
label: "Menu",
href: "/menu",
},
{
label: "About",
href: "/about",
},
],
},
{
title: "Contact",
items: [
{
label: "Call: 011 4166 4440",
href: "tel:01141664440",
},
],
},
{
title: "Social",
items: [
{
label: "Instagram",
href: "#",
},
{
label: "Swiggy",
href: "#",
},
],
},
{ title: "Navigation", items: [{ label: "Menu", href: "/menu" }, { label: "About", href: "/about" }] },
{ title: "Contact", items: [{ label: "Call: 011 4166 4440", href: "tel:01141664440" }] },
{ title: "Social", items: [{ label: "Instagram", href: "#" }, { label: "Swiggy", href: "#" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}