10 Commits

Author SHA1 Message Date
9795ac4108 Merge version_2 into main
Merge version_2 into main
2026-03-28 10:15:13 +00:00
5147be8c57 Update src/app/page.tsx 2026-03-28 10:15:10 +00:00
ef83e20ec1 Merge version_2 into main
Merge version_2 into main
2026-03-28 10:04:35 +00:00
972dd84b8f Update src/app/page.tsx 2026-03-28 10:04:32 +00:00
8615f0e750 Merge version_2 into main
Merge version_2 into main
2026-03-28 10:03:43 +00:00
1c6a53ddc0 Update src/app/page.tsx 2026-03-28 10:03:40 +00:00
b923622c7b Merge version_2 into main
Merge version_2 into main
2026-03-28 09:59:24 +00:00
56a7c9b3a8 Update src/app/page.tsx 2026-03-28 09:59:18 +00:00
b2469a5c9b Merge version_2 into main
Merge version_2 into main
2026-03-28 09:49:53 +00:00
41c3b2866d Update src/app/page.tsx 2026-03-28 09:49:50 +00:00

View File

@@ -2,6 +2,7 @@
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
export default function LandingPage() {
return (
@@ -30,6 +31,23 @@ export default function LandingPage() {
topBarClassName=""
/>
</div>
<div id="menu" data-section="menu">
<ProductCardFour
title="Nosso Menu"
description="Descubra nossos hambúrgueres artesanais feitos com ingredientes frescos."
textboxLayout="default"
useInvertedBackground={false}
gridVariant="four-items-2x2-equal-grid"
animationType="slide-up"
products={[
{ id: "1", name: "Menu patty ", price: "14,90 ", variant: " 2 Patty - Bacon aos cubos - 2 Queijo cheddar - Cebola - Picles feitos pela Patty - Ketchup & Mostarda.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BMRsX4uNVXKKFr1nlOShtmnnfb/uploaded-1774692904098-1c79kxjr.png" },
{ id: "2", name: "Menu Patty Bacon", price: "15,90 ", variant: " 2 Patty - Bacon aos cubos - 2 Queijo cheddar - Cebola - Picles feitos pela Patty - Ketchup & Mostarda.", imageSrc: "https://images.unsplash.com/photo-1594212699903-ec8a3eca50f5?q=80&w=600" },
{ id: "3", name: "Veggie Smash", price: "R$ 28,00", variant: "Vegetariano", imageSrc: "https://images.unsplash.com/photo-1520692278473-b1d3d6394e1d?q=80&w=600" },
{ id: "4", name: "Double Cheese", price: "R$ 35,00", variant: " 2 Patty - Bacon aos cubos - 2 Queijo cheddar - Cebola - Picles feitos pela Patty - Ketchup & Mostarda.", imageSrc: "https://images.unsplash.com/photo-1550547660-d9450f859349?q=80&w=600" }
]}
/>
</div>
</ThemeProvider>
);
}
}