8 Commits

Author SHA1 Message Date
59c5293af6 Update src/app/page.tsx 2026-05-08 16:18:21 +00:00
4bcc4bdcda Merge version_4 into main
Merge version_4 into main
2026-05-08 16:16:05 +00:00
bc44cdbd93 Remove watermark 2026-05-08 16:16:02 +00:00
90576fa400 Merge version_4 into main
Merge version_4 into main
2026-05-08 16:12:25 +00:00
91a000c159 Update src/app/page.tsx 2026-05-08 16:12:22 +00:00
dfbea3aad5 Merge version_3 into main
Merge version_3 into main
2026-05-08 16:10:45 +00:00
ba5bf2fbf7 Update src/app/page.tsx 2026-05-08 16:10:39 +00:00
fc7b6fd399 Merge version_2 into main
Merge version_2 into main
2026-05-08 16:07:42 +00:00
2 changed files with 9 additions and 10 deletions

View File

@@ -4,7 +4,6 @@ import { Inter } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Poppins } from "next/font/google";
@@ -30,7 +29,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${poppins.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{

View File

@@ -137,21 +137,21 @@ export default function LandingPage() {
<ProductCardThree
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
gridVariant="bento-grid"
useInvertedBackground={false}
products={[
{
id: "1", name: "Barón d'Alba Reserva", price: "24€", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-romantic-arrangement-with-wine_23-2148243734.jpg"},
id: "5", name: "Colección Privada", price: "60€", imageSrc: "http://img.b2bpic.net/free-photo/front-view-pomegranate-wine-dark-wall-drinks-fruit-alcohol-sour-color-bar-restaurant-wine_179666-17553.jpg", priceButtonProps: { text: "Añadir al carrito" }},
{
id: "2", name: "Barón d'Alba Crianza", price: "18€", imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-green-grapes_23-2151566083.jpg"},
id: "4", name: "Edición Limitada", price: "45€", imageSrc: "http://img.b2bpic.net/free-photo/front-view-glass-wine-with-bottle-light-background-alcohol-drink-bar-lemonade-dinner-photo-grape-juice-holiday_140725-160625.jpg", priceButtonProps: { text: "Añadir al carrito" }},
{
id: "3", name: "Barón d'Alba Blanco", price: "16€", imageSrc: "http://img.b2bpic.net/free-photo/ripe-grape-bunches-rustic-winery-table-generated-by-ai_188544-47619.jpg"},
id: "1", name: "Barón d'Alba Reserva", price: "24€", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-romantic-arrangement-with-wine_23-2148243734.jpg", priceButtonProps: { text: "Añadir al carrito" }},
{
id: "4", name: "Edición Limitada", price: "45€", imageSrc: "http://img.b2bpic.net/free-photo/front-view-glass-wine-with-bottle-light-background-alcohol-drink-bar-lemonade-dinner-photo-grape-juice-holiday_140725-160625.jpg"},
id: "2", name: "Barón d'Alba Crianza", price: "18€", imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-green-grapes_23-2151566083.jpg", priceButtonProps: { text: "Añadir al carrito" }},
{
id: "5", name: "Colección Privada", price: "60€", imageSrc: "http://img.b2bpic.net/free-photo/front-view-pomegranate-wine-dark-wall-drinks-fruit-alcohol-sour-color-bar-restaurant-wine_179666-17553.jpg"},
id: "3", name: "Barón d'Alba Blanco", price: "16€", imageSrc: "http://img.b2bpic.net/free-photo/ripe-grape-bunches-rustic-winery-table-generated-by-ai_188544-47619.jpg", priceButtonProps: { text: "Añadir al carrito" }},
{
id: "6", name: "Tinto Joven", price: "12€", imageSrc: "http://img.b2bpic.net/free-photo/top-view-new-year-party-arrangement_23-2149181115.jpg"},
id: "6", name: "Tinto Joven", price: "12€", imageSrc: "http://img.b2bpic.net/free-photo/top-view-new-year-party-arrangement_23-2149181115.jpg", priceButtonProps: { text: "Añadir al carrito" }},
]}
title="Nuestra Selección"
description="Botellas que cuentan historias."
@@ -241,4 +241,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}