diff --git a/src/app/page.tsx b/src/app/page.tsx index ac4ac24..9d02b08 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; import SplitAbout from '@/components/sections/about/SplitAbout'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; -import { Eye, Heart, Palette, Scissors, Sparkles } from "lucide-react"; +import { Eye, Heart, Palette, Scissors, Sparkles, Users, Award, MapPin } from "lucide-react"; export default function LandingPage() { return ( @@ -30,26 +30,11 @@ export default function LandingPage() { @@ -168,63 +94,16 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} testimonials={[ - { - id: "1", - name: "Kimberlly Gomez", - role: "Cliente", - company: "Studio OG", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/cheerful-charismatic-happy-goodlooking-redhead-woman-red-lipstick-cross-hands-chest-smiling-motivate_1258-129302.jpg", - }, - { - id: "2", - name: "Vanessa Lopes Santana", - role: "Cliente", - company: "Studio OG", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-woman-holding-hands-together-joyfully-looking-camera-modern-clothes-store_574295-2021.jpg", - }, - { - id: "3", - name: "Tairini Bianca", - role: "Cliente", - company: "Studio OG", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/cheerful-woman-visagiste-smiling-camera_23-2148113183.jpg", - }, - { - id: "4", - name: "Ana Silva", - role: "Cliente", - company: "Studio OG", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/woman-wearing-pajamas-while-sitting-bed_273609-13213.jpg", - }, - { - id: "5", - name: "Mariana Souza", - role: "Cliente", - company: "Studio OG", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/female-hairdresser-woman-smiling-looking-mirror-beauty-salon_176420-4473.jpg", - }, + { id: "1", name: "Cliente Studio OG", role: "Cliente", company: "Comunidade", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/cheerful-charismatic-happy-goodlooking-redhead-woman-red-lipstick-cross-hands-chest-smiling-motivate_1258-129302.jpg" }, + { id: "2", name: "Cliente Studio OG", role: "Cliente", company: "Comunidade", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/cheerful-woman-visagiste-smiling-camera_23-2148113183.jpg" } ]} kpiItems={[ - { - value: "4.9", - label: "Avaliação Média", - }, - { - value: "1200+", - label: "Clientes Satisfeitas", - }, - { - value: "100%", - label: "Qualidade Garantida", - }, + { value: "LGBTQ+", label: "Espaço Seguro" }, + { value: "Experts", label: "Técnicas de Iluminação" }, + { value: "5.0", label: "Excelência em Atendimento" }, ]} - title="O Que Dizem Nossas Clientes" - description="A satisfação de quem passa pelo Studio OG é nossa maior conquista." + title="Comunidade Acolhida" + description="Veja como nossos clientes se sentem ao viverem a experiência Studio OG." /> @@ -234,55 +113,22 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} plans={[ - { - id: "basic", - badge: "Essential", - price: "R$ 150", - subtitle: "Corte e Hidratação", - features: [ - "Corte personalizado", - "Hidratação básica", - "Finalização", - ], - }, - { - id: "pro", - badge: "Mais Procurado", - price: "R$ 350", - subtitle: "Coloração Completa", - features: [ - "Coloração completa", - "Corte", - "Tratamento de brilho", - ], - }, - { - id: "gold", - badge: "Dia de Diva", - price: "R$ 600", - subtitle: "Spa Completo", - features: [ - "Tratamento capilar", - "Manicure/Pedicure", - "Maquiagem", - "Design de Sobrancelhas", - ], - }, + { id: "basic", badge: "Essential", price: "Consulte", subtitle: "Atendimento Personalizado", features: ["Corte", "Finalização", "Tratamento Inicial"] }, + { id: "pro", badge: "Especialidade", price: "Consulte", subtitle: "Loiras/Morenas", features: ["Mechas Iluminadas", "Tratamento Premium", "Design"] }, + { id: "gold", badge: "Exclusivo", price: "Consulte", subtitle: "Dia Especial", features: ["Atendimento Geovani", "Produtos Conceituais", "Completo"] }, ]} - title="Pacotes de Beleza" - description="Preços justos e transparentes para quem busca qualidade sem surpresas." + title="Nossos Planos" + description="Beleza premium feita para você." />
@@ -290,14 +136,8 @@ export default function LandingPage() {