From 4aa4ea9e31f3a6f6d667536072d74d8316e231e6 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 22 May 2026 18:07:44 +0000 Subject: [PATCH] Update src/app/about/page.tsx --- src/app/about/page.tsx | 54 +++++++++++++++++------------------------- 1 file changed, 22 insertions(+), 32 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index af8f0a1..1ed8142 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -7,8 +7,9 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis' import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import TeamCardEleven from '@/components/sections/team/TeamCardEleven'; import { Pizza, Users } from "lucide-react"; +import Link from "next/link"; -export default function LandingPage() { +export default function AboutPage() { return ( @@ -46,12 +42,8 @@ export default function LandingPage() { useInvertedBackground={false} title="Our Journey in Numbers" metrics={[ - { - label: "Happy Customers", value: "10,000+", icon: Users, - }, - { - label: "Pizzas Delivered", value: "50,000+", icon: Pizza, - }, + { label: "Happy Customers", value: "10,000+", icon: Users }, + { label: "Pizzas Delivered", value: "50,000+", icon: Pizza }, ]} metricsAnimation="slide-up" /> @@ -68,11 +60,13 @@ export default function LandingPage() { { id: "g1", groupTitle: "Kitchen Staff", members: [ { - id: "m1", title: "Chef Rohit", subtitle: "Head Pizzaiolo", detail: "15 years of experience in wood-fired perfection.", imageSrc: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27016.jpg"}, + id: "m1", title: "Chef Rohit", subtitle: "Head Pizzaiolo", detail: "15 years of experience in wood-fired perfection.", imageSrc: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27016.jpg" + }, { - id: "m2", title: "Chef Meera", subtitle: "Dough Specialist", detail: "Secret dough recipe curator.", imageSrc: "http://img.b2bpic.net/free-photo/woman-spread-pizza-dough_23-2148570347.jpg"}, - ], - imageAlt: "Chef in a white uniform prepare a pizzaa"}, + id: "m2", title: "Chef Meera", subtitle: "Dough Specialist", detail: "Secret dough recipe curator.", imageSrc: "http://img.b2bpic.net/free-photo/woman-spread-pizza-dough_23-2148570347.jpg" + } + ] + } ]} /> @@ -82,20 +76,16 @@ export default function LandingPage() { columns={[ { items: [ - { - label: "Menu", href: "/menu"}, - { - label: "About", href: "/about"}, - ], + { label: "Menu", href: "/menu" }, + { label: "About", href: "/about" }, + ] }, { items: [ - { - label: "Contact", href: "/contact"}, - { - label: "Privacy Policy", href: "#"}, - ], - }, + { label: "Contact", href: "/contact" }, + { label: "Privacy Policy", href: "#" }, + ] + } ]} logoText="The Pizza Theatre" /> -- 2.49.1