Update src/app/about/page.tsx

This commit is contained in:
2026-03-09 21:46:48 +00:00
parent a744349dd1
commit 876c516d7a

View File

@@ -6,7 +6,7 @@ import TextAbout from "@/components/sections/about/TextAbout";
import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import Link from "next/link";
import { Leaf } from "lucide-react";
import { Leaf, Lightbulb } from "lucide-react";
export default function AboutPage() {
const navItems = [
@@ -54,9 +54,7 @@ export default function AboutPage() {
useInvertedBackground={true}
buttons={[
{
text: "Explore Our Menu",
href: "/",
},
text: "Explore Our Menu", href: "/"},
]}
buttonAnimation="slide-up"
ariaLabel="About Mamma Pizza section"
@@ -68,42 +66,24 @@ export default function AboutPage() {
title="How We Serve You"
description="Three convenient ways to enjoy Mamma Pizza"
tag="Service Options"
tagIcon="Lightbulb"
tagIcon={Lightbulb}
tagAnimation="slide-up"
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
features={[
{
id: "1",
title: "Dine-In Experience",
description:
"Enjoy authentic Italian atmosphere with friends and family in our cozy pizzeria. Warm lighting, traditional décor, and friendly staff create the perfect dining experience.",
tag: "Dine-In",
imageSrc:
"http://img.b2bpic.net/free-photo/people-drinking-kombucha-gathering_23-2150168571.jpg",
imageAlt: "Cozy pizzeria dining",
},
id: "1", title: "Dine-In Experience", description:
"Enjoy authentic Italian atmosphere with friends and family in our cozy pizzeria. Warm lighting, traditional décor, and friendly staff create the perfect dining experience.", tag: "Dine-In", imageSrc:
"http://img.b2bpic.net/free-photo/people-drinking-kombucha-gathering_23-2150168571.jpg", imageAlt: "Cozy pizzeria dining"},
{
id: "2",
title: "Takeaway Fresh & Hot",
description:
"Grab your favorite pizza by the slice or order whole pies. We box everything fresh to ensure you get the best quality at home.",
tag: "Takeaway",
imageSrc:
"http://img.b2bpic.net/free-photo/piece-pizza-closeup-concept-picnic-relaxation_169016-23064.jpg?_wi=1",
imageAlt: "Pizza takeaway box",
},
id: "2", title: "Takeaway Fresh & Hot", description:
"Grab your favorite pizza by the slice or order whole pies. We box everything fresh to ensure you get the best quality at home.", tag: "Takeaway", imageSrc:
"http://img.b2bpic.net/free-photo/piece-pizza-closeup-concept-picnic-relaxation_169016-23064.jpg", imageAlt: "Pizza takeaway box"},
{
id: "3",
title: "Speedy Home Delivery",
description:
"Order online and we'll deliver hot, fresh pizza to your door. Available throughout Rome with reliable, professional service.",
tag: "Delivery",
imageSrc:
"http://img.b2bpic.net/free-photo/piece-pizza-closeup-concept-picnic-relaxation_169016-23064.jpg?_wi=2",
imageAlt: "Pizza delivery service",
},
id: "3", title: "Speedy Home Delivery", description:
"Order online and we'll deliver hot, fresh pizza to your door. Available throughout Rome with reliable, professional service.", tag: "Delivery", imageSrc:
"http://img.b2bpic.net/free-photo/piece-pizza-closeup-concept-picnic-relaxation_169016-23064.jpg", imageAlt: "Pizza delivery service"},
]}
ariaLabel="Service options and features"
/>
@@ -113,13 +93,9 @@ export default function AboutPage() {
<FooterLogoReveal
logoText="Mamma Pizza"
leftLink={{
text: "Privacy Policy",
href: "#",
}}
text: "Privacy Policy", href: "#"}}
rightLink={{
text: "Terms of Service",
href: "#",
}}
text: "Terms of Service", href: "#"}}
ariaLabel="Site footer"
/>
</div>