Update src/app/about/page.tsx

This commit is contained in:
2026-04-06 06:43:23 +00:00
parent 3b2c8f4b3c
commit 0c8cb4ffa5

View File

@@ -7,7 +7,7 @@ import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
@@ -25,20 +25,12 @@ 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>
@@ -59,60 +51,16 @@ export default function LandingPage() {
title="Our Journey"
description="Hear from the people who keep our kitchen fires burning."
kpiItems={[
{
value: "100%",
label: "Fresh Ingredients",
},
{
value: "24/7",
label: "Passion",
},
{
value: "10k+",
label: "Happy Customers",
},
{ value: "100%", label: "Fresh Ingredients" },
{ value: "24/7", label: "Passion" },
{ value: "10k+", label: "Happy Customers" },
]}
testimonials={[
{
id: "t1",
name: "Amit R.",
role: "Food Blogger",
company: "Delhi Eats",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/indian-man-smiling-restaurant-concept_53876-13779.jpg?_wi=2",
},
{
id: "t2",
name: "Sonia L.",
role: "Customer",
company: "Local",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-senior-with-delicious-food_23-2150854212.jpg?_wi=2",
},
{
id: "t3",
name: "Vikram V.",
role: "Regular",
company: "Saket Resident",
rating: 4,
imageSrc: "http://img.b2bpic.net/free-photo/front-view-arrangement-with-different-feelings_23-2148860243.jpg?_wi=2",
},
{
id: "t4",
name: "Meera P.",
role: "Chef",
company: "Culinary Arts",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5054.jpg?_wi=2",
},
{
id: "t5",
name: "Rahul D.",
role: "Fan",
company: "Foodie",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-people-work_23-2149097885.jpg?_wi=2",
},
{ id: "t1", name: "Amit R.", role: "Food Blogger", company: "Delhi Eats", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/indian-man-smiling-restaurant-concept_53876-13779.jpg" },
{ id: "t2", name: "Sonia L.", role: "Customer", company: "Local", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/high-angle-senior-with-delicious-food_23-2150854212.jpg" },
{ id: "t3", name: "Vikram V.", role: "Regular", company: "Saket Resident", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/front-view-arrangement-with-different-feelings_23-2148860243.jpg" },
{ id: "t4", name: "Meera P.", role: "Chef", company: "Culinary Arts", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5054.jpg" },
{ id: "t5", name: "Rahul D.", role: "Fan", company: "Foodie", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-people-work_23-2149097885.jpg" },
]}
/>
</div>
@@ -121,45 +69,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>
);
}
}