Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-04-22 21:44:30 +00:00

View File

@@ -9,7 +9,7 @@ import HeroLogo from '@/components/sections/hero/HeroLogo';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import { Beef, Cake, Utensils } from "lucide-react";
export default function LandingPage() {
@@ -98,24 +98,18 @@ export default function LandingPage() {
</div>
<div id="depoimentos" data-section="depoimentos">
<TestimonialCardSixteen
animationType="slide-up"
textboxLayout="split"
<TestimonialCardTwelve
cardTitle="O que nossos clientes dizem"
cardTag="Depoimentos"
cardAnimation="slide-up"
useInvertedBackground={false}
testimonials={[
{ id: "t1", name: "Junior Vieira", role: "Cliente", company: "Six Street", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-happy-friends-table_23-2149213365.jpg" },
{ id: "t2", name: "Carlos Jefferson", role: "Cliente", company: "Six Street", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-image-happy-smiling-woman-enjoy-her-morning-french-breakfast-open-cafe-terrace-tasty-organic-food-holding-french-croissant-her-hand_291049-523.jpg" },
{ id: "t3", name: "Raí Cardoso", role: "Cliente", company: "Six Street", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/man-presents-girl-ring_1398-4220.jpg" },
{ id: "t4", name: "Ana Souza", role: "Cliente", company: "Six Street", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/adorable-young-female-with-dark-long-hair-dressed-striped-t-shirt-coffee-shop-drinks-fresh-juice-espresso_273609-2787.jpg" },
{ id: "t5", name: "Lucas Santos", role: "Cliente", company: "Six Street", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-red-blouse-pink-hair-invites-dinner_141793-766.jpg" },
{ id: "t1", name: "Junior Vieira", imageSrc: "http://img.b2bpic.net/free-photo/close-up-happy-friends-table_23-2149213365.jpg" },
{ id: "t2", name: "Carlos Jefferson", imageSrc: "http://img.b2bpic.net/free-photo/close-up-image-happy-smiling-woman-enjoy-her-morning-french-breakfast-open-cafe-terrace-tasty-organic-food-holding-french-croissant-her-hand_291049-523.jpg" },
{ id: "t3", name: "Raí Cardoso", imageSrc: "http://img.b2bpic.net/free-photo/man-presents-girl-ring_1398-4220.jpg" },
{ id: "t4", name: "Ana Souza", imageSrc: "http://img.b2bpic.net/free-photo/adorable-young-female-with-dark-long-hair-dressed-striped-t-shirt-coffee-shop-drinks-fresh-juice-espresso_273609-2787.jpg" },
{ id: "t5", name: "Lucas Santos", imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-red-blouse-pink-hair-invites-dinner_141793-766.jpg" },
]}
kpiItems={[
{ value: "4.4K", label: "Avaliações" },
{ value: "19h", label: "Abertura" },
{ value: "100%", label: "Delivery" },
]}
title="O que nossos clientes dizem"
description="Histórias e elogios de quem viveu a experiência Six Street."
/>
</div>
@@ -152,4 +146,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}