Merge version_2 into main #2
134
src/app/page.tsx
134
src/app/page.tsx
@@ -2,16 +2,16 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
import { Facebook, Instagram, Star, Shield, Heart, Truck } from "lucide-react";
|
||||
import { Facebook, Instagram, Star, Shield, Heart, Truck, Mail, Phone, MapPin } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -31,14 +31,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "#hero"},
|
||||
{
|
||||
name: "About", id: "#about"},
|
||||
{
|
||||
name: "Services", id: "#features"},
|
||||
{
|
||||
name: "Contact", id: "#contact"},
|
||||
{ name: "Home", id: "#hero" },
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Services", id: "#features" },
|
||||
{ name: "FAQ", id: "#faq" },
|
||||
{ name: "Contact", id: "#contact" },
|
||||
]}
|
||||
brandName="Sisters Laredo"
|
||||
/>
|
||||
@@ -46,15 +43,12 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboard
|
||||
background={{
|
||||
variant: "sparkles-gradient"}}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
logoText="Sisters Laredo"
|
||||
description="Your premier boutique in Laredo. Discover curated styles, quality service, and a welcoming community experience."
|
||||
buttons={[
|
||||
{
|
||||
text: "Explore Collection", href: "#products"},
|
||||
{
|
||||
text: "Contact Us", href: "#contact"},
|
||||
{ text: "Explore Collection", href: "#products" },
|
||||
{ text: "Contact Us", href: "#contact" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/elegant-women-with-shopping-bags-city_1157-26763.jpg"
|
||||
imageAlt="Sisters Laredo storefront"
|
||||
@@ -65,16 +59,8 @@ export default function LandingPage() {
|
||||
<div id="about" data-section="about">
|
||||
<InlineImageSplitTextAbout
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text", content: "Welcome to "},
|
||||
{
|
||||
type: "text", content: "Sisters Laredo"},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Learn More"},
|
||||
]}
|
||||
heading={[{ type: "text", content: "Welcome to Sisters Laredo" }]}
|
||||
buttons={[{ text: "Learn More" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -83,18 +69,10 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Curated Collections", description: "Expertly selected items for every season.", buttonIcon: Star,
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/check-mark-stars_78370-4435.jpg"},
|
||||
{
|
||||
title: "Premium Service", description: "Focused on your complete satisfaction.", buttonIcon: Shield,
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/customer-service-technical-support_24877-52930.jpg"},
|
||||
{
|
||||
title: "Local Heart", description: "Rooted in our community traditions.", buttonIcon: Heart,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/red-heart-bubble-speech-icon-table_23-2148023905.jpg"},
|
||||
{
|
||||
title: "Fast Delivery", description: "Quick shipping options available.", buttonIcon: Truck,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delivery-scooter-out-smartphone-location-pointer-online-delivery-ecommerce-concept-blue-background-3d-illustration_56104-1806.jpg"},
|
||||
{ title: "Curated Collections", description: "Expertly selected items for every season.", buttonIcon: Star, imageSrc: "http://img.b2bpic.net/free-vector/check-mark-stars_78370-4435.jpg" },
|
||||
{ title: "Premium Service", description: "Focused on your complete satisfaction.", buttonIcon: Shield, imageSrc: "http://img.b2bpic.net/free-vector/customer-service-technical-support_24877-52930.jpg" },
|
||||
{ title: "Local Heart", description: "Rooted in our community traditions.", buttonIcon: Heart, imageSrc: "http://img.b2bpic.net/free-photo/red-heart-bubble-speech-icon-table_23-2148023905.jpg" },
|
||||
{ title: "Fast Delivery", description: "Quick shipping options available.", buttonIcon: Truck, imageSrc: "http://img.b2bpic.net/free-photo/delivery-scooter-out-smartphone-location-pointer-online-delivery-ecommerce-concept-blue-background-3d-illustration_56104-1806.jpg" },
|
||||
]}
|
||||
title="Why Sisters Laredo?"
|
||||
description="We bring you closer to the styles you love with a personal touch."
|
||||
@@ -108,18 +86,10 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1", name: "Spring Chic", price: "$45.00", variant: "Apparel", imageSrc: "http://img.b2bpic.net/free-photo/back-school-concept-with-woman-studying-library_23-2148172380.jpg"},
|
||||
{
|
||||
id: "p2", name: "Vintage Charm", price: "$30.00", variant: "Decor", imageSrc: "http://img.b2bpic.net/free-photo/woman-buying-stuff-decoration-store_1303-24639.jpg"},
|
||||
{
|
||||
id: "p3", name: "Casual Elegance", price: "$65.00", variant: "Style", imageSrc: "http://img.b2bpic.net/free-photo/asian-store-employee-suggesting-trendy-items-client-wheelchair-user_482257-108841.jpg"},
|
||||
{
|
||||
id: "p4", name: "Urban Vibe", price: "$55.00", variant: "Fashion", imageSrc: "http://img.b2bpic.net/free-photo/view-kit-with-jewelry-brushes-modeling-career_52683-109518.jpg"},
|
||||
{
|
||||
id: "p5", name: "Summer Glow", price: "$40.00", variant: "Accessories", imageSrc: "http://img.b2bpic.net/free-photo/spring-wardrobe-switch-top-view_23-2150264134.jpg"},
|
||||
{
|
||||
id: "p6", name: "Essential Daily", price: "$25.00", variant: "Lifestyle", imageSrc: "http://img.b2bpic.net/free-photo/still-life-spring-wardrobe-switch_23-2150478971.jpg"},
|
||||
{ id: "p1", name: "Spring Chic", price: "$45.00", variant: "Apparel", imageSrc: "http://img.b2bpic.net/free-photo/back-school-concept-with-woman-studying-library_23-2148172380.jpg" },
|
||||
{ id: "p2", name: "Vintage Charm", price: "$30.00", variant: "Decor", imageSrc: "http://img.b2bpic.net/free-photo/woman-buying-stuff-decoration-store_1303-24639.jpg" },
|
||||
{ id: "p3", name: "Casual Elegance", price: "$65.00", variant: "Style", imageSrc: "http://img.b2bpic.net/free-photo/asian-store-employee-suggesting-trendy-items-client-wheelchair-user_482257-108841.jpg" },
|
||||
{ id: "p4", name: "Urban Vibe", price: "$55.00", variant: "Fashion", imageSrc: "http://img.b2bpic.net/free-photo/view-kit-with-jewelry-brushes-modeling-career_52683-109518.jpg" },
|
||||
]}
|
||||
title="Our Latest Arrivals"
|
||||
description="Discover new styles added every week."
|
||||
@@ -132,16 +102,8 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1", name: "Sarah J.", handle: "@sarahj", testimonial: "Sisters Laredo has the best selection in town!", imageSrc: "http://img.b2bpic.net/free-photo/pretty-attractive-young-mixed-race-model-with-large-afro-wearing-navy-jacket-her-naked-body-shorts_633478-1216.jpg"},
|
||||
{
|
||||
id: "t2", name: "Michael K.", handle: "@michealk", testimonial: "Excellent service and quality items.", imageSrc: "http://img.b2bpic.net/free-photo/happy-female-office-workers-thumbing-up-smiling-two-cheerful-professional-businesswomen-standing-together-posing-meeting-room-teamwork-business-success-cooperation-concept_74855-7378.jpg"},
|
||||
{
|
||||
id: "t3", name: "Emily R.", handle: "@emilyr", testimonial: "I always find something unique here.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-woman-smiling_23-2148352574.jpg"},
|
||||
{
|
||||
id: "t4", name: "David M.", handle: "@davidm", testimonial: "Highly recommended for all your needs.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-buying-product_23-2149081076.jpg"},
|
||||
{
|
||||
id: "t5", name: "Alice T.", handle: "@alicet", testimonial: "Love the local boutique atmosphere.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-carrying-shopping-bags_23-2148660763.jpg"},
|
||||
{ id: "t1", name: "Sarah J.", handle: "@sarahj", testimonial: "Sisters Laredo has the best selection in town!", imageSrc: "http://img.b2bpic.net/free-photo/pretty-attractive-young-mixed-race-model-with-large-afro-wearing-navy-jacket-her-naked-body-shorts_633478-1216.jpg" },
|
||||
{ id: "t2", name: "Michael K.", handle: "@michealk", testimonial: "Excellent service and quality items.", imageSrc: "http://img.b2bpic.net/free-photo/happy-female-office-workers-thumbing-up-smiling-two-cheerful-professional-businesswomen-standing-together-posing-meeting-room-teamwork-business-success-cooperation-concept_74855-7378.jpg" },
|
||||
]}
|
||||
title="Loved by Our Community"
|
||||
description="Hear what our wonderful customers have to say."
|
||||
@@ -150,46 +112,50 @@ export default function LandingPage() {
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqBase
|
||||
faqsAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1", title: "Do you offer shipping?", content: "Yes, we ship nationwide!"},
|
||||
{
|
||||
id: "f2", title: "What is the return policy?", content: "Returns are accepted within 30 days."},
|
||||
{
|
||||
id: "f3", title: "How do I contact support?", content: "Email us at support@sisterslaredo.com."},
|
||||
{ id: "f1", title: "¿Ofrecen envíos nacionales?", content: "¡Sí, realizamos envíos a todo el país!" },
|
||||
{ id: "f2", title: "¿Cuál es su política de devoluciones?", content: "Aceptamos devoluciones dentro de los 30 días posteriores a su compra." },
|
||||
{ id: "f3", title: "¿Cómo puedo contactar soporte?", content: "Puede enviarnos un correo a soporte@sisterslaredo.com." },
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Have questions? We have answers."
|
||||
faqsAnimation="slide-up"
|
||||
title="Preguntas Frecuentes"
|
||||
description="¿Tiene alguna duda? Estamos aquí para ayudarle."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
<ContactCTA
|
||||
tag="Contacto"
|
||||
title="Hablemos hoy"
|
||||
description="Estamos disponibles para resolver sus dudas o iniciar una colaboración. Llámenos o envíenos un mensaje."
|
||||
buttons={[{ text: "Enviar Mensaje" }]}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "sparkles-gradient"}}
|
||||
text="Get in touch with the Sisters Laredo team today for inquiries, collaborations, or just to say hello!"
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Us"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/shopping-mall-interior_1150-17937.jpg"
|
||||
logoText="Sisters Laredo"
|
||||
socialLinks={[
|
||||
columns={[
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "#", ariaLabel: "Instagram"},
|
||||
title: "Información", items: [
|
||||
{ label: "Sobre Nosotros", href: "#about" },
|
||||
{ label: "FAQ", href: "#faq" },
|
||||
{ label: "Contacto", href: "#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
icon: Facebook,
|
||||
href: "#", ariaLabel: "Facebook"},
|
||||
title: "Contacto", items: [
|
||||
{ label: "Laredo, TX", href: "#" },
|
||||
{ label: "soporte@sisterslaredo.com", href: "mailto:soporte@sisterslaredo.com" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2025 Sisters Laredo. Todos los derechos reservados."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user