Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-04-08 22:01:15 +00:00

View File

@@ -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() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Menu",
id: "menu",
},
{
name: "Contact",
id: "contact",
},
{ name: "Menu", id: "menu" },
{ name: "Team", id: "team" },
{ name: "Contact", id: "contact" },
]}
brandName="Little Mamma"
button={{ text: "Order Now", href: "#contact" }}
/>
</div>
@@ -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"},
]}
/>
</div>
@@ -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"] }
]}
/>
</div>
@@ -149,8 +107,7 @@ export default function LandingPage() {
<ContactSplit
useInvertedBackground={false}
background={{
variant: "plain",
}}
variant: "plain"}}
tag="Visit Us"
title="Little Mamma Kenitra"
description="Found in the heart of Kenitra. We look forward to serving you an authentic Italian dining experience."
@@ -164,27 +121,15 @@ export default function LandingPage() {
columns={[
{
items: [
{
label: "Pizza",
},
{
label: "Salads",
},
{
label: "Pasta",
},
{ label: "Pizza" },
{ label: "Salads" },
{ label: "Pasta" },
],
},
{
items: [
{
label: "Instagram",
href: "#",
},
{
label: "Facebook",
href: "#",
},
{ label: "Instagram", href: "#" },
{ label: "Facebook", href: "#" },
],
},
]}