Merge version_4 into main #4

Merged
bender merged 1 commits from version_4 into main 2026-04-15 00:53:03 +00:00

View File

@@ -9,9 +9,9 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import Input from '@/components/form/Input';
import { Book, Heart, MapPin, Search } from "lucide-react";
import { Book, Heart, MapPin, Search, Star } from "lucide-react";
export default function LandingPage() {
const [search, setSearch] = useState("");
@@ -36,6 +36,7 @@ export default function LandingPage() {
{ name: "Inicio", id: "hero" },
{ name: "Sobre Nosotros", id: "about" },
{ name: "Catálogo", id: "products" },
{ name: "Testimonios", id: "testimonials" },
{ name: "Contacto", id: "contact" },
]}
brandName="Books & Soul"
@@ -51,11 +52,12 @@ export default function LandingPage() {
buttons={[{ text: "Explorar Catálogo", href: "#products" }]}
mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/pile-books-chair_23-2148213836.jpg?_wi=1", imageAlt: "BibliotecaBooksAndSoul" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=c4iikz&_wi=1", imageAlt: "Circe" },
{ imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-reading-book_23-2149652015.jpg?_wi=1", imageAlt: "Aquiles" },
{ imageSrc: "http://img.b2bpic.net/free-photo/woman-covering-face-with-book_23-2148369454.jpg?_wi=1", imageAlt: "MitosFry" },
{ imageSrc: "http://img.b2bpic.net/free-photo/menu-arab-restaurant_23-2147796953.jpg?_wi=1", imageAlt: "Odisea" },
{ imageSrc: "http://img.b2bpic.net/free-photo/fairytale-scene-coming-out-book_23-2151778582.jpg", imageAlt: "ViajeHeroe" },
{ imageSrc: "http://img.b2bpic.net/free-photo/stack-books-old-vintage-bookshelf_23-2148906977.jpg", imageAlt: "BibliotecaAntigua" },
{ imageSrc: "http://img.b2bpic.net/free-photo/open-book-wooden-table_23-2148784347.jpg", imageAlt: "LecturaMesa" }
]}
/>
</div>
@@ -100,12 +102,30 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFive
textboxLayout="split-description"
useInvertedBackground={true}
testimonials={[]}
title="Voces de nuestra comunidad"
description="Historias que han encontrado su alma en nuestras estanterías."
<TestimonialCardSix
title="Reseñas de Google"
description="Lo que nuestros lectores dicen de nosotros."
animationType="blur-reveal"
textboxLayout="split"
useInvertedBackground={false}
testimonials={[
{ id: "1", name: "Noelia", handle: "@google", testimonial: "Increíble selección y atención personalizada." },
{ id: "2", name: "Maria Fe", handle: "@google", testimonial: "Librería encantadora, siempre encuentro joyas." },
{ id: "3", name: "Griselda Montenegro", handle: "@google", testimonial: "Excelente curaduría de libros." },
{ id: "4", name: "Pamela Elisabet", handle: "@google", testimonial: "Ambiente acogedor y libros fascinantes." },
{ id: "5", name: "Dermashape Beauty Center", handle: "@google", testimonial: "Recomendado al 100%, gran variedad." },
{ id: "6", name: "Morena Uribe", handle: "@google", testimonial: "Amé mis compras, volveré pronto." },
{ id: "7", name: "Julieta Spanish", handle: "@google", testimonial: "El lugar perfecto para perderse entre historias." },
{ id: "8", name: "Maru Br", handle: "@google", testimonial: "Libros de excelente calidad y hermosa edición." },
{ id: "9", name: "Juan Santiago Grillone", handle: "@google", testimonial: "Atención de primera, muy recomendable." },
{ id: "10", name: "Julieta Tamagna", handle: "@google", testimonial: "Gran librería en Nordelta." },
{ id: "11", name: "Maria Albornoz", handle: "@google", testimonial: "Maravilloso lugar, impecable atención." },
{ id: "12", name: "Maria M", handle: "@google", testimonial: "Muy buenos títulos, siempre encuentro qué leer." },
{ id: "13", name: "Mauro L'Estrange", handle: "@google", testimonial: "Calidad excepcional en cada libro." },
{ id: "14", name: "Mr. López Flamengo", handle: "@google", testimonial: "La mejor librería de la zona." },
{ id: "15", name: "FERNÁNDEZ BUENTE Guillermina", handle: "@google", testimonial: "Excelente selección y servicio al cliente." },
{ id: "16", name: "Manu Piscicelli", handle: "@google", testimonial: "Experiencia literaria inigualable." },
]}
/>
</div>
@@ -124,7 +144,7 @@ export default function LandingPage() {
<FooterBaseCard
logoText="Books & Soul"
columns={[
{ title: "Navegación", items: [{ label: "Inicio", href: "#hero" }, { label: "Catálogo", href: "#products" }] },
{ title: "Navegación", items: [{ label: "Inicio", href: "#hero" }, { label: "Catálogo", href: "#products" }, { label: "Testimonios", href: "#testimonials" }] },
{ title: "Contacto", items: [{ label: "Instagram", href: "https://instagram.com" }, { label: "Sucursales", href: "#" }] },
]}
/>