Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f5d937b33d | |||
| 1c8ca70684 | |||
| 1e3472b2b7 | |||
| 31da4f5fb8 |
100
src/app/blog/page.tsx
Normal file
100
src/app/blog/page.tsx
Normal file
@@ -0,0 +1,100 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
|
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
|
||||||
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
|
|
||||||
|
export default function BlogPage() {
|
||||||
|
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: "Pricing", id: "/pricing" },
|
||||||
|
{ name: "Blog", id: "/blog" },
|
||||||
|
{ name: "Contact", id: "/contact" },
|
||||||
|
{ name: "Legal", id: "/legal" }
|
||||||
|
]}
|
||||||
|
brandName="Ayari"
|
||||||
|
button={{
|
||||||
|
text: "Shop Now", href: "/collection"
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="blog-section" data-section="blog-section">
|
||||||
|
<BlogCardThree
|
||||||
|
blogs={[
|
||||||
|
{
|
||||||
|
id: "blog1", category: "Fashion Trends", title: "The Rise of Sustainable Fashion in 2024", excerpt: "Discover how Ayino is leading the charge in eco-friendly fashion with our latest sustainable practices.", imageSrc: "http://img.b2bpic.net/free-photo/woman-nature-with-clothesline_23-2148170341.jpg", imageAlt: "Sustainable clothes drying", authorName: "Ayino Team", authorAvatar: "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", date: "July 1, 2024"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "blog2", category: "Style Guide", title: "5 Must-Have Pieces for Your Summer Wardrobe", excerpt: "Elevate your summer style with our curated selection of essential garments that blend comfort and elegance.", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-confident-woman-sitting-grey-surface_176420-16959.jpg", imageAlt: "Woman in elegant summer dress", authorName: "Ayino Style", authorAvatar: "http://img.b2bpic.net/free-photo/summer-portrait-young-elegant-woman-posing-sunny-day_291650-470.jpg", date: "June 25, 2024"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "blog3", category: "Behind the Scenes", title: "A Glimpse into Ayino's Design Process", excerpt: "From concept to creation, explore the artistry and dedication behind every Ayino collection.", imageSrc: "http://img.b2bpic.net/free-photo/professional-beautiful-asian-female-fashion-designer-working-measuring-dress-mannequin-clothing_7861-788.jpg", imageAlt: "Fashion designer at work", authorName: "Ayino Design", authorAvatar: "http://img.b2bpic.net/free-photo/blonde-senior-woman-looking-away_23-2148286459.jpg", date: "June 18, 2024"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
title="Latest from Our Blog"
|
||||||
|
description="Stay updated with fashion trends, style tips, and Ayino's journey."
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={true}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterBase
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
title: "Shop", items: [
|
||||||
|
{ label: "New Arrivals", href: "/collection" },
|
||||||
|
{ label: "Dresses", href: "/collection" },
|
||||||
|
{ label: "Outerwear", href: "/collection" },
|
||||||
|
{ label: "Accessories", href: "/collection" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
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: "#" },
|
||||||
|
{ label: "Legal", href: "/legal" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
logoText="Ayino"
|
||||||
|
copyrightText="© 2024 Ayino. All rights reserved."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
113
src/app/pricing/page.tsx
Normal file
113
src/app/pricing/page.tsx
Normal file
@@ -0,0 +1,113 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
|
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
|
||||||
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
|
import { CheckCircle } from "lucide-react";
|
||||||
|
|
||||||
|
export default function PricingPage() {
|
||||||
|
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: "Pricing", id: "/pricing" },
|
||||||
|
{ name: "Blog", id: "/blog" },
|
||||||
|
{ name: "Contact", id: "/contact" },
|
||||||
|
{ name: "Legal", id: "/legal" }
|
||||||
|
]}
|
||||||
|
brandName="Ayari"
|
||||||
|
button={{
|
||||||
|
text: "Shop Now", href: "/collection"
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="pricing-section" data-section="pricing-section">
|
||||||
|
<PricingCardFive
|
||||||
|
plans={[
|
||||||
|
{
|
||||||
|
id: "basic", tag: "Basic", tagIcon: CheckCircle,
|
||||||
|
price: "$19", period: "per month", description: "Ideal for individuals and small businesses.", button: { text: "Start Free Trial", href: "#" },
|
||||||
|
featuresTitle: "Features include:", features: [
|
||||||
|
"Access to standard collection", "Email support", "5% discount on new arrivals"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "pro", tag: "Pro", tagIcon: CheckCircle,
|
||||||
|
price: "$49", period: "per month", description: "Perfect for growing businesses.", button: { text: "Get Started", href: "#" },
|
||||||
|
featuresTitle: "Everything in Basic, plus:", features: [
|
||||||
|
"Access to premium collection", "Priority email & chat support", "10% discount on new arrivals", "Early access to sales"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "enterprise", tag: "Enterprise", tagIcon: CheckCircle,
|
||||||
|
price: "Custom", period: "", description: "Tailored solutions for large enterprises.", button: { text: "Contact Us", href: "/contact" },
|
||||||
|
featuresTitle: "Everything in Pro, plus:", features: [
|
||||||
|
"Custom collection access", "Dedicated account manager", "Personalized styling sessions", "Exclusive event invitations"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
title="Choose Your Perfect Plan"
|
||||||
|
description="Flexible pricing options to match your style and needs."
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterBase
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
title: "Shop", items: [
|
||||||
|
{ label: "New Arrivals", href: "/collection" },
|
||||||
|
{ label: "Dresses", href: "/collection" },
|
||||||
|
{ label: "Outerwear", href: "/collection" },
|
||||||
|
{ label: "Accessories", href: "/collection" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
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: "#" },
|
||||||
|
{ label: "Legal", href: "/legal" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
logoText="Ayino"
|
||||||
|
copyrightText="© 2024 Ayino. All rights reserved."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user