diff --git a/src/app/page.tsx b/src/app/page.tsx index 319e10d..68ef746 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,9 +6,9 @@ import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import HeroLogo from '@/components/sections/hero/HeroLogo'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; import TeamCardTwo from '@/components/sections/team/TeamCardTwo'; +import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; export default function LandingPage() { return ( @@ -28,16 +28,12 @@ export default function LandingPage() {
@@ -47,9 +43,7 @@ export default function LandingPage() { description="Authentic Italian flavors, right here in the heart of Kenitra." buttons={[ { - text: "View Menu", - href: "#menu", - }, + text: "View Menu", href: "#menu"}, ]} imageSrc="http://img.b2bpic.net/free-photo/top-view-delicious-sweet-cakes-with-olives-cookies-dark-surface-sweet-cake-pie_140725-82372.jpg" /> @@ -63,47 +57,15 @@ export default function LandingPage() { useInvertedBackground={false} products={[ { - id: "p1", - name: "Pizza Burrata", - price: "95 DH", - variant: "Pizza", - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-baking-delicious-pizza_23-2150235783.jpg?_wi=1", - }, + id: "p1", name: "Pizza Burrata", price: "95 DH", variant: "Pizza", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-baking-delicious-pizza_23-2150235783.jpg"}, { - id: "p2", - name: "Pizza Frutti Di Mare", - price: "110 DH", - variant: "Pizza", - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-baking-delicious-pizza_23-2150235783.jpg?_wi=2", - }, + id: "p2", name: "Pizza Frutti Di Mare", price: "110 DH", variant: "Pizza", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-baking-delicious-pizza_23-2150235783.jpg"}, { - id: "s1", - name: "Insalata Mista", - price: "55 DH", - variant: "Salads", - imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-food-ingredients-with-salad-plate_23-2148834744.jpg?_wi=1", - }, + id: "s1", name: "Insalata Mista", price: "55 DH", variant: "Salads", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-food-ingredients-with-salad-plate_23-2148834744.jpg"}, { - id: "s2", - name: "Caesar Salad", - price: "65 DH", - variant: "Salads", - imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-food-ingredients-with-salad-plate_23-2148834744.jpg?_wi=2", - }, + id: "s2", name: "Caesar Salad", price: "65 DH", variant: "Salads", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-food-ingredients-with-salad-plate_23-2148834744.jpg"}, { - id: "pa1", - name: "Penne Arrabbiata", - price: "75 DH", - variant: "Pasta", - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-baking-delicious-pizza_23-2150235783.jpg?_wi=3", - }, - { - id: "pa2", - name: "Spaghetti Carbonara", - price: "85 DH", - variant: "Pasta", - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-baking-delicious-pizza_23-2150235783.jpg?_wi=4", - }, + id: "pa1", name: "Penne Arrabbiata", price: "75 DH", variant: "Pasta", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-baking-delicious-pizza_23-2150235783.jpg"}, ]} title="Our Menu" description="Explore our authentic dishes, categorized for your convenience." @@ -120,19 +82,9 @@ export default function LandingPage() { description="The passionate team behind our kitchen, crafting authentic memories." members={[ { - id: "m1", - name: "Marco Rossi", - role: "Head Chef", - description: "Expert in traditional Roman pasta.", - imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-food-ingredients-with-salad-plate_23-2148834744.jpg?_wi=3", - }, + id: "m1", name: "Marco Rossi", role: "Head Chef", description: "Expert in traditional Roman pasta.", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-food-ingredients-with-salad-plate_23-2148834744.jpg"}, { - id: "m2", - name: "Elena Valli", - role: "Pizza Master", - description: "Mastering the art of dough since 2010.", - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-baking-delicious-pizza_23-2150235783.jpg?_wi=5", - }, + id: "m2", name: "Elena Valli", role: "Pizza Master", description: "Mastering the art of dough since 2010.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-baking-delicious-pizza_23-2150235783.jpg"}, ]} /> @@ -142,6 +94,12 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="default" useInvertedBackground={false} + title="Exclusive Deals" + description="Check our special menu packages." + plans={[ + { name: "Lunch Set", price: "99 DH", features: ["Starter", "Main", "Drink"] }, + { name: "Family Pizza", price: "250 DH", features: ["3 Pizzas", "Soda Pitcher", "Salad"] } + ]} /> @@ -149,8 +107,7 @@ export default function LandingPage() {