diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 93ee5d5..9cce18d 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -6,8 +6,9 @@ import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwent import FooterSimple from '@/components/sections/footer/FooterSimple'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import SplitAbout from '@/components/sections/about/SplitAbout'; +import { User, Users, UserCheck, UserCog } from "lucide-react"; -export default function LandingPage() { +export default function AboutPage() { return ( @@ -63,14 +46,8 @@ export default function LandingPage() { imageSrc="http://img.b2bpic.net/free-photo/rustic-chandelier-made-bulbs-ropes-dining-table-vintage-kitchen_181624-9173.jpg" mediaAnimation="slide-up" bulletPoints={[ - { - title: "Heritage", - description: "Traditional recipes.", - }, - { - title: "Innovation", - description: "Modern twists.", - }, + { title: "Heritage", description: "Traditional recipes." }, + { title: "Innovation", description: "Modern twists." }, ]} /> @@ -82,34 +59,10 @@ export default function LandingPage() { title="Our Team" description="The people behind the flavor." features={[ - { - title: "Expert Chefs", - description: "Culinary mastery.", - buttonIcon: "User", - imageSrc: "http://img.b2bpic.net/free-photo/delicious-realistic-burger_23-2150902326.jpg?_wi=2", - imageAlt: "Delicious realistic burger", - }, - { - title: "Fast Servers", - description: "Friendly service.", - buttonIcon: "Users", - imageSrc: "http://img.b2bpic.net/free-photo/hamburger-chips_23-2147695734.jpg?_wi=4", - imageAlt: "Delicious realistic burger", - }, - { - title: "Quality Staff", - description: "Training daily.", - buttonIcon: "UserCheck", - imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-burger-street-cafe-close-up_169016-43231.jpg?_wi=4", - imageAlt: "Delicious realistic burger", - }, - { - title: "Manager", - description: "Service excellence.", - buttonIcon: "UserCog", - imageSrc: "http://img.b2bpic.net/free-photo/attractive-young-woman-hands-holds-two-burgers-blurred-background_169016-43235.jpg?_wi=4", - imageAlt: "Delicious realistic burger", - }, + { title: "Expert Chefs", description: "Culinary mastery.", buttonIcon: User, imageSrc: "http://img.b2bpic.net/free-photo/delicious-realistic-burger_23-2150902326.jpg", imageAlt: "Delicious realistic burger" }, + { title: "Fast Servers", description: "Friendly service.", buttonIcon: Users, imageSrc: "http://img.b2bpic.net/free-photo/hamburger-chips_23-2147695734.jpg", imageAlt: "Delicious realistic burger" }, + { title: "Quality Staff", description: "Training daily.", buttonIcon: UserCheck, imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-burger-street-cafe-close-up_169016-43231.jpg", imageAlt: "Delicious realistic burger" }, + { title: "Manager", description: "Service excellence.", buttonIcon: UserCog, imageSrc: "http://img.b2bpic.net/free-photo/attractive-young-woman-hands-holds-two-burgers-blurred-background_169016-43235.jpg", imageAlt: "Delicious realistic burger" }, ]} /> @@ -117,32 +70,8 @@ export default function LandingPage() { @@ -127,32 +70,8 @@ export default function LandingPage() {