Merge version_2 into main #1

Merged
bender merged 1 commits from version_2 into main 2026-03-28 09:49:53 +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: "Classic Smash", price: "R$ 25,00", variant: "Boi", imageSrc: "https://images.unsplash.com/photo-1568901346375-23c9450c58cd?q=80&w=600" },
{ id: "2", name: "Bacon Lover", price: "R$ 30,00", variant: "Boi", 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: "Boi", imageSrc: "https://images.unsplash.com/photo-1550547660-d9450f859349?q=80&w=600" }
]}
/>
</div>
</ThemeProvider>
);
}
}