Update src/app/about/page.tsx

This commit is contained in:
2026-04-17 02:50:35 +00:00
parent dfbde168d5
commit 047febca3b

View File

@@ -26,20 +26,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="من و سلوی"
button={{ text: "Order Now", href: "https://wa.me/923185436728" }}
/>
</div>
@@ -50,18 +42,9 @@ export default function LandingPage() {
title="Our Story"
description="من و سلوی is a passion project turned home food business. We started with a simple mission: to bring restaurant-quality food to your home with the warmth of homemade cooking. Located in Wah Cantt Barrier 3 (Lalazar Colony)."
bulletPoints={[
{
title: "Authentic Flavors",
description: "Chinese, Continental, and Desi cuisine.",
},
{
title: "Freshness Guaranteed",
description: "High-quality ingredients used daily.",
},
{
title: "Delivery",
description: "Free delivery in Wah Cantt.",
},
{ title: "Authentic Flavors", description: "Chinese, Continental, and Desi cuisine." },
{ title: "Freshness Guaranteed", description: "High-quality ingredients used daily." },
{ title: "Delivery", description: "Free delivery in Wah Cantt." },
]}
imageSrc="http://img.b2bpic.net/free-photo/food-celebrating-world-tapas-day_23-2149361448.jpg"
mediaAnimation="slide-up"
@@ -75,21 +58,9 @@ export default function LandingPage() {
title="Quality at a Glance"
metricsAnimation="blur-reveal"
metrics={[
{
icon: Award,
label: "Years of Passion",
value: "5+",
},
{
icon: Utensils,
label: "Satisfied Customers",
value: "1000+",
},
{
icon: ShieldCheck,
label: "Fresh Daily",
value: "100%",
},
{ icon: Award, label: "Years of Passion", value: "5+" },
{ icon: Utensils, label: "Satisfied Customers", value: "1000+" },
{ icon: ShieldCheck, label: "Fresh Daily", value: "100%" },
]}
/>
</div>
@@ -97,30 +68,8 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Home",
href: "/",
},
{
label: "Menu",
href: "/menu",
},
],
},
{
items: [
{
label: "About Us",
href: "/about",
},
{
label: "WhatsApp Order",
href: "https://wa.me/923185436728",
},
],
},
{ items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }] },
{ items: [{ label: "About Us", href: "/about" }, { label: "WhatsApp Order", href: "https://wa.me/923185436728" }] },
]}
logoText="من و سلوی"
/>
@@ -128,4 +77,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}