Merge version_2 into main #3
131
src/app/about/page.tsx
Normal file
131
src/app/about/page.tsx
Normal file
@@ -0,0 +1,131 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="floatingGradient"
|
||||
cardStyle="layered-gradient"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "/"
|
||||
},
|
||||
{
|
||||
name: "About", id: "/about"
|
||||
},
|
||||
{
|
||||
name: "Collection", id: "#collection"
|
||||
},
|
||||
{
|
||||
name: "Features", id: "#features"
|
||||
},
|
||||
{
|
||||
name: "Testimonials", id: "#testimonials"
|
||||
},
|
||||
{
|
||||
name: "FAQ", id: "#faq"
|
||||
},
|
||||
{
|
||||
name: "Contact", id: "#contact"
|
||||
}
|
||||
]}
|
||||
brandName="Ayari"
|
||||
button={{
|
||||
text: "Shop Now", href: "#collection"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-content" data-section="about-content">
|
||||
<InlineImageSplitTextAbout
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text", content: "Our Mission: Crafting Timeless Fashion for a Conscious Future"
|
||||
}
|
||||
]}
|
||||
description="At Ayino, we believe in the power of fashion to inspire confidence and express individuality. Our journey began with a simple vision: to create clothing that is not only beautiful and comfortable but also ethically made and sustainable. We meticulously select eco-friendly fabrics and partner with artisans who share our commitment to quality and responsible production."
|
||||
buttons={[
|
||||
{
|
||||
text: "Our Values", href: "#"
|
||||
},
|
||||
{
|
||||
text: "Meet the Team", href: "#"
|
||||
}
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/elegant-brunette-businesswoman-working-office-holding-clipboard_23-2147775510.jpg"
|
||||
imageAlt="Woman working in a stylish office"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Shop", items: [
|
||||
{
|
||||
label: "New Arrivals", href: "#collection"
|
||||
},
|
||||
{
|
||||
label: "Dresses", href: "#"
|
||||
},
|
||||
{
|
||||
label: "Outerwear", href: "#"
|
||||
},
|
||||
{
|
||||
label: "Accessories", href: "#"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Ayino", items: [
|
||||
{
|
||||
label: "Our Story", href: "/about"
|
||||
},
|
||||
{
|
||||
label: "Sustainability", href: "#"
|
||||
},
|
||||
{
|
||||
label: "Careers", href: "#"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Support", items: [
|
||||
{
|
||||
label: "FAQ", href: "#faq"
|
||||
},
|
||||
{
|
||||
label: "Contact Us", href: "#contact"
|
||||
},
|
||||
{
|
||||
label: "Shipping & Returns", href: "#"
|
||||
}
|
||||
]
|
||||
}
|
||||
]}
|
||||
logoText="Ayino"
|
||||
copyrightText="© 2024 Ayino. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
274
src/app/page.tsx
274
src/app/page.tsx
@@ -32,80 +32,49 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "#home",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
name: "About", id: "/about"},
|
||||
{
|
||||
name: "Collection",
|
||||
id: "#collection",
|
||||
},
|
||||
name: "Collection", id: "#collection"},
|
||||
{
|
||||
name: "Features",
|
||||
id: "#features",
|
||||
},
|
||||
name: "Features", id: "#features"},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "#testimonials",
|
||||
},
|
||||
name: "Testimonials", id: "#testimonials"},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "#faq",
|
||||
},
|
||||
name: "FAQ", id: "#faq"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
name: "Contact", id: "#contact"},
|
||||
]}
|
||||
brandName="Ayari"
|
||||
button={{
|
||||
text: "Shop Now",
|
||||
href: "#collection",
|
||||
}}
|
||||
text: "Shop Now", href: "#collection"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="home" data-section="home">
|
||||
<HeroBillboardCarousel
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
variant: "radial-gradient"}}
|
||||
title="Elevate Your Style with Ayino"
|
||||
description="Discover our latest collection of premium clothing, blending comfort with timeless elegance. Dress for every moment with confidence and grace."
|
||||
buttons={[
|
||||
{
|
||||
text: "Shop New Arrivals",
|
||||
href: "#collection",
|
||||
},
|
||||
text: "Shop New Arrivals", href: "#collection"},
|
||||
]}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-walking-around-city-street-photo_1321-2574.jpg?_wi=1",
|
||||
imageAlt: "Fashion model wearing a stylish dress",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-walking-around-city-street-photo_1321-2574.jpg?_wi=1", imageAlt: "Fashion model wearing a stylish dress"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-interracial-young-couple-wearing-sunglasses-looking-camera_23-2148151749.jpg?_wi=1",
|
||||
imageAlt: "Man in elegant blazer walking city street",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-interracial-young-couple-wearing-sunglasses-looking-camera_23-2148151749.jpg?_wi=1", imageAlt: "Man in elegant blazer walking city street"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cute-woman-fashion-model_1328-1136.jpg?_wi=1",
|
||||
imageAlt: "Abstract fashion design flat lay",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cute-woman-fashion-model_1328-1136.jpg?_wi=1", imageAlt: "Abstract fashion design flat lay"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/brunette-curly-haired-long-legs-girl-black-leather-jacket-with-swimmsuit-cap-posed-studio-chair-against-dark-brick-wall_627829-7825.jpg?_wi=1",
|
||||
imageAlt: "Woman posing in a sophisticated outfit",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/brunette-curly-haired-long-legs-girl-black-leather-jacket-with-swimmsuit-cap-posed-studio-chair-against-dark-brick-wall_627829-7825.jpg?_wi=1", imageAlt: "Woman posing in a sophisticated outfit"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fashion-image-stylish-brunette-woman-posing-home-boho-style_273443-1401.jpg?_wi=1",
|
||||
imageAlt: "Stylish couple in urban setting",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fashion-image-stylish-brunette-woman-posing-home-boho-style_273443-1401.jpg?_wi=1", imageAlt: "Stylish couple in urban setting"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-nature-with-clothesline_23-2148170341.jpg",
|
||||
imageAlt: "Close up of high-quality fabric texture",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-nature-with-clothesline_23-2148170341.jpg", imageAlt: "Close up of high-quality fabric texture"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -115,15 +84,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "Our Story: The Essence of Ayino",
|
||||
},
|
||||
type: "text", content: "Our Story: The Essence of Ayino"},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Learn More",
|
||||
href: "#",
|
||||
},
|
||||
text: "Learn More", href: "/about"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -134,23 +99,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Sustainable Fabrics",
|
||||
description: "We ethically source eco-friendly materials that feel luxurious and last longer.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-pinecone-beige-shawl-dark-surface_140725-63513.jpg",
|
||||
imageAlt: "Close-up of sustainable fabric",
|
||||
},
|
||||
title: "Sustainable Fabrics", description: "We ethically source eco-friendly materials that feel luxurious and last longer.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-pinecone-beige-shawl-dark-surface_140725-63513.jpg", imageAlt: "Close-up of sustainable fabric"},
|
||||
{
|
||||
title: "Unique Designs",
|
||||
description: "Our collections feature exclusive designs that set you apart with sophisticated flair.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-flat-abstract-shapes-pattern_23-2149083534.jpg",
|
||||
imageAlt: "Fashion designer sketching a unique dress",
|
||||
},
|
||||
title: "Unique Designs", description: "Our collections feature exclusive designs that set you apart with sophisticated flair.", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-flat-abstract-shapes-pattern_23-2149083534.jpg", imageAlt: "Fashion designer sketching a unique dress"},
|
||||
{
|
||||
title: "Perfect Fit",
|
||||
description: "Each piece is designed for comfort and a flattering silhouette, enhancing your natural beauty.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-beautiful-asian-female-fashion-designer-working-measuring-dress-mannequin-clothing_7861-788.jpg",
|
||||
imageAlt: "Tailor measuring garment for perfect fit",
|
||||
},
|
||||
title: "Perfect Fit", description: "Each piece is designed for comfort and a flattering silhouette, enhancing your natural beauty.", imageSrc: "http://img.b2bpic.net/free-photo/professional-beautiful-asian-female-fashion-designer-working-measuring-dress-mannequin-clothing_7861-788.jpg", imageAlt: "Tailor measuring garment for perfect fit"},
|
||||
]}
|
||||
title="Why Choose Ayino?"
|
||||
description="Experience unparalleled quality and style with our meticulously crafted garments."
|
||||
@@ -165,47 +118,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Elegance Flow Dress",
|
||||
price: "$120.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-confident-woman-sitting-grey-surface_176420-16959.jpg",
|
||||
imageAlt: "Elegant flowing dress",
|
||||
},
|
||||
id: "p1", name: "Elegance Flow Dress", price: "$120.00", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-confident-woman-sitting-grey-surface_176420-16959.jpg", imageAlt: "Elegant flowing dress"},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Classic Linen Shirt",
|
||||
price: "$85.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-best-man_23-2149044033.jpg",
|
||||
imageAlt: "Classic linen shirt",
|
||||
},
|
||||
id: "p2", name: "Classic Linen Shirt", price: "$85.00", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-best-man_23-2149044033.jpg", imageAlt: "Classic linen shirt"},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Tailored Denim Jeans",
|
||||
price: "$95.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-jeans-jacket-posing-near-concrete-wall_613910-2889.jpg",
|
||||
imageAlt: "Tailored denim jeans",
|
||||
},
|
||||
id: "p3", name: "Tailored Denim Jeans", price: "$95.00", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-jeans-jacket-posing-near-concrete-wall_613910-2889.jpg", imageAlt: "Tailored denim jeans"},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Cozy Knit Sweater",
|
||||
price: "$110.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/attractive-stylish-smiling-skinny-woman-with-curly-hair-walking-park-dressed-warm-brown-coat-autumn-trendy-fashion-street-style_285396-6812.jpg",
|
||||
imageAlt: "Cozy knit sweater",
|
||||
},
|
||||
id: "p4", name: "Cozy Knit Sweater", price: "$110.00", imageSrc: "http://img.b2bpic.net/free-photo/attractive-stylish-smiling-skinny-woman-with-curly-hair-walking-park-dressed-warm-brown-coat-autumn-trendy-fashion-street-style_285396-6812.jpg", imageAlt: "Cozy knit sweater"},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Structured Blazer",
|
||||
price: "$160.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-suit_1303-4449.jpg",
|
||||
imageAlt: "Structured blazer",
|
||||
},
|
||||
id: "p5", name: "Structured Blazer", price: "$160.00", imageSrc: "http://img.b2bpic.net/free-photo/girl-suit_1303-4449.jpg", imageAlt: "Structured blazer"},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Silk Accent Scarf",
|
||||
price: "$45.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-hat-scarf-talking-phone_23-2147625171.jpg",
|
||||
imageAlt: "Silk accent scarf",
|
||||
},
|
||||
id: "p6", name: "Silk Accent Scarf", price: "$45.00", imageSrc: "http://img.b2bpic.net/free-photo/woman-with-hat-scarf-talking-phone_23-2147625171.jpg", imageAlt: "Silk accent scarf"},
|
||||
]}
|
||||
title="Our Latest Collection"
|
||||
description="Explore new arrivals and signature pieces designed to complement your lifestyle."
|
||||
@@ -217,14 +140,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"Vogue",
|
||||
"Harper's Bazaar",
|
||||
"ELLE",
|
||||
"Fashionista",
|
||||
"Marie Claire",
|
||||
"Glamour",
|
||||
"InStyle",
|
||||
]}
|
||||
"Vogue", "Harper's Bazaar", "ELLE", "Fashionista", "Marie Claire", "Glamour", "InStyle"]}
|
||||
title="Featured In"
|
||||
description="Ayino has been recognized by leading fashion publications and style influencers."
|
||||
/>
|
||||
@@ -236,65 +152,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Sophia L.",
|
||||
date: "May 10, 2024",
|
||||
title: "Absolutely Stunning!",
|
||||
quote: "The 'Elegance Flow Dress' is beyond beautiful. The fabric quality is exceptional, and I received so many compliments.",
|
||||
tag: "Dresses",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-elegant-stylish-woman-with-blonde-curly-hair-natural-make-up-wearing-black-fedora-posing-street_291049-2812.jpg",
|
||||
avatarAlt: "Sophia L. avatar",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-walking-around-city-street-photo_1321-2574.jpg?_wi=2",
|
||||
imageAlt: "professional woman portrait smiling",
|
||||
},
|
||||
id: "t1", name: "Sophia L.", date: "May 10, 2024", title: "Absolutely Stunning!", quote: "The 'Elegance Flow Dress' is beyond beautiful. The fabric quality is exceptional, and I received so many compliments.", tag: "Dresses", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-elegant-stylish-woman-with-blonde-curly-hair-natural-make-up-wearing-black-fedora-posing-street_291049-2812.jpg", avatarAlt: "Sophia L. avatar", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-walking-around-city-street-photo_1321-2574.jpg?_wi=2", imageAlt: "professional woman portrait smiling"},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Ethan M.",
|
||||
date: "April 28, 2024",
|
||||
title: "Comfort and Style Combined",
|
||||
quote: "The 'Classic Linen Shirt' is my new go-to. It's incredibly comfortable and looks effortlessly stylish. Highly recommend!",
|
||||
tag: "Menswear",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/unpleased-looking-side-young-blonde-guy-wearing-green-t-shirt-crossing-hands_141793-89324.jpg",
|
||||
avatarAlt: "Ethan M. avatar",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-interracial-young-couple-wearing-sunglasses-looking-camera_23-2148151749.jpg?_wi=2",
|
||||
imageAlt: "professional woman portrait smiling",
|
||||
},
|
||||
id: "t2", name: "Ethan M.", date: "April 28, 2024", title: "Comfort and Style Combined", quote: "The 'Classic Linen Shirt' is my new go-to. It's incredibly comfortable and looks effortlessly stylish. Highly recommend!", tag: "Menswear", avatarSrc: "http://img.b2bpic.net/free-photo/unpleased-looking-side-young-blonde-guy-wearing-green-t-shirt-crossing-hands_141793-89324.jpg", avatarAlt: "Ethan M. avatar", imageSrc: "http://img.b2bpic.net/free-photo/modern-interracial-young-couple-wearing-sunglasses-looking-camera_23-2148151749.jpg?_wi=2", imageAlt: "professional woman portrait smiling"},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Olivia R.",
|
||||
date: "April 15, 2024",
|
||||
title: "Perfect Fit Jeans",
|
||||
quote: "Finally, jeans that fit perfectly! The 'Tailored Denim Jeans' are so flattering and comfortable for all-day wear.",
|
||||
tag: "Bottoms",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/summer-portrait-young-elegant-woman-posing-sunny-day_291650-470.jpg",
|
||||
avatarAlt: "Olivia R. avatar",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cute-woman-fashion-model_1328-1136.jpg?_wi=2",
|
||||
imageAlt: "professional woman portrait smiling",
|
||||
},
|
||||
id: "t3", name: "Olivia R.", date: "April 15, 2024", title: "Perfect Fit Jeans", quote: "Finally, jeans that fit perfectly! The 'Tailored Denim Jeans' are so flattering and comfortable for all-day wear.", tag: "Bottoms", avatarSrc: "http://img.b2bpic.net/free-photo/summer-portrait-young-elegant-woman-posing-sunny-day_291650-470.jpg", avatarAlt: "Olivia R. avatar", imageSrc: "http://img.b2bpic.net/free-photo/cute-woman-fashion-model_1328-1136.jpg?_wi=2", imageAlt: "professional woman portrait smiling"},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Liam K.",
|
||||
date: "March 22, 2024",
|
||||
title: "Luxurious Sweater",
|
||||
quote: "This 'Cozy Knit Sweater' is a dream. The quality is fantastic, and it keeps me warm without being bulky. Worth every penny!",
|
||||
tag: "Knitwear",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/cheerful-schoolboy-portrait_23-2147666930.jpg",
|
||||
avatarAlt: "Liam K. avatar",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/brunette-curly-haired-long-legs-girl-black-leather-jacket-with-swimmsuit-cap-posed-studio-chair-against-dark-brick-wall_627829-7825.jpg?_wi=2",
|
||||
imageAlt: "professional woman portrait smiling",
|
||||
},
|
||||
id: "t4", name: "Liam K.", date: "March 22, 2024", title: "Luxurious Sweater", quote: "This 'Cozy Knit Sweater' is a dream. The quality is fantastic, and it keeps me warm without being bulky. Worth every penny!", tag: "Knitwear", avatarSrc: "http://img.b2bpic.net/free-photo/cheerful-schoolboy-portrait_23-2147666930.jpg", avatarAlt: "Liam K. avatar", imageSrc: "http://img.b2bpic.net/free-photo/brunette-curly-haired-long-legs-girl-black-leather-jacket-with-swimmsuit-cap-posed-studio-chair-against-dark-brick-wall_627829-7825.jpg?_wi=2", imageAlt: "professional woman portrait smiling"},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Ava P.",
|
||||
date: "March 05, 2024",
|
||||
title: "My New Wardrobe Staple",
|
||||
quote: "The 'Structured Blazer' is incredibly versatile. I can dress it up or down, and it always looks sharp. A must-have!",
|
||||
tag: "Outerwear",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/blonde-senior-woman-looking-away_23-2148286459.jpg",
|
||||
avatarAlt: "Ava P. avatar",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fashion-image-stylish-brunette-woman-posing-home-boho-style_273443-1401.jpg?_wi=2",
|
||||
imageAlt: "professional woman portrait smiling",
|
||||
},
|
||||
id: "t5", name: "Ava P.", date: "March 05, 2024", title: "My New Wardrobe Staple", quote: "The 'Structured Blazer' is incredibly versatile. I can dress it up or down, and it always looks sharp. A must-have!", tag: "Outerwear", avatarSrc: "http://img.b2bpic.net/free-photo/blonde-senior-woman-looking-away_23-2148286459.jpg", avatarAlt: "Ava P. avatar", imageSrc: "http://img.b2bpic.net/free-photo/fashion-image-stylish-brunette-woman-posing-home-boho-style_273443-1401.jpg?_wi=2", imageAlt: "professional woman portrait smiling"},
|
||||
]}
|
||||
title="What Our Customers Say"
|
||||
description="Hear how Ayino has transformed their style and confidence."
|
||||
@@ -307,25 +173,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "faq1",
|
||||
title: "What is Ayino's return policy?",
|
||||
content: "We offer free returns within 30 days of purchase, provided items are unworn and with tags attached.",
|
||||
},
|
||||
id: "faq1", title: "What is Ayino's return policy?", content: "We offer free returns within 30 days of purchase, provided items are unworn and with tags attached."},
|
||||
{
|
||||
id: "faq2",
|
||||
title: "How do I find my size?",
|
||||
content: "Please refer to our detailed sizing chart available on each product page for accurate measurements.",
|
||||
},
|
||||
id: "faq2", title: "How do I find my size?", content: "Please refer to our detailed sizing chart available on each product page for accurate measurements."},
|
||||
{
|
||||
id: "faq3",
|
||||
title: "Do you ship internationally?",
|
||||
content: "Yes, we offer international shipping to most countries. Shipping costs and times vary by destination.",
|
||||
},
|
||||
id: "faq3", title: "Do you ship internationally?", content: "Yes, we offer international shipping to most countries. Shipping costs and times vary by destination."},
|
||||
{
|
||||
id: "faq4",
|
||||
title: "How do I care for my Ayino garments?",
|
||||
content: "Each garment comes with specific care instructions. Generally, we recommend gentle washing and air drying to preserve quality.",
|
||||
},
|
||||
id: "faq4", title: "How do I care for my Ayino garments?", content: "Each garment comes with specific care instructions. Generally, we recommend gentle washing and air drying to preserve quality."},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/smiling-pretty-caucasian-female-call-center-operator-headphones-sitting-desk-with-office-tools-isolated-green-wall_141793-121445.jpg"
|
||||
imageAlt="Customer service representative assisting a client in a boutique"
|
||||
@@ -341,8 +195,7 @@ export default function LandingPage() {
|
||||
<ContactCenter
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
tag="Get in Touch"
|
||||
title="Connect with Ayino"
|
||||
description="Have questions, feedback, or need assistance? Reach out to our dedicated support team."
|
||||
@@ -356,58 +209,35 @@ export default function LandingPage() {
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Shop",
|
||||
items: [
|
||||
title: "Shop", items: [
|
||||
{
|
||||
label: "New Arrivals",
|
||||
href: "#collection",
|
||||
},
|
||||
label: "New Arrivals", href: "#collection"},
|
||||
{
|
||||
label: "Dresses",
|
||||
href: "#",
|
||||
},
|
||||
label: "Dresses", href: "#"},
|
||||
{
|
||||
label: "Outerwear",
|
||||
href: "#",
|
||||
},
|
||||
label: "Outerwear", href: "#"},
|
||||
{
|
||||
label: "Accessories",
|
||||
href: "#",
|
||||
},
|
||||
label: "Accessories", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Ayino",
|
||||
items: [
|
||||
title: "Ayino", items: [
|
||||
{
|
||||
label: "Our Story",
|
||||
href: "#about",
|
||||
},
|
||||
label: "Our Story", href: "/about"},
|
||||
{
|
||||
label: "Sustainability",
|
||||
href: "#",
|
||||
},
|
||||
label: "Sustainability", href: "#"},
|
||||
{
|
||||
label: "Careers",
|
||||
href: "#",
|
||||
},
|
||||
label: "Careers", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
title: "Support", items: [
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "#faq",
|
||||
},
|
||||
label: "FAQ", href: "#faq"},
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Contact Us", href: "#contact"},
|
||||
{
|
||||
label: "Shipping & Returns",
|
||||
href: "#",
|
||||
},
|
||||
label: "Shipping & Returns", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -418,4 +248,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user