Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -4,13 +4,13 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
--background: #fff5f8;;
|
||||
--card: #ffebf0;;
|
||||
--foreground: #3d2930;;
|
||||
--primary-cta: #e890a8;;
|
||||
--background: #ffffff;;
|
||||
--card: #fcfcfc;;
|
||||
--foreground: #000000e6;;
|
||||
--primary-cta: #1a1a1a;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #f5ccd5;;
|
||||
--background-accent: #f0b8c4;;
|
||||
--accent: #bebebe;;
|
||||
--background-accent: #c4c4c4;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Source_Sans_3 } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const sourceSans3 = Source_Sans_3({
|
||||
variable: "--font-source-sans-3",
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
@@ -50,7 +50,7 @@ export default function RootLayout({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={sourceSans3.variable}
|
||||
className={inter.variable}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
@@ -1276,4 +1276,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
217
src/app/page.tsx
217
src/app/page.tsx
@@ -1,14 +1,14 @@
|
||||
"use client"
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import HeroBillboardCarouselSplit from '@/components/sections/hero/HeroBillboardCarouselSplit';
|
||||
import TextAbout from '@/components/sections/about/TextAbout';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import HeroSplit from '@/components/sections/hero/HeroSplit';
|
||||
import TagAbout from '@/components/sections/about/TagAbout';
|
||||
import ProductCardFive from '@/components/sections/product/ProductCardFive';
|
||||
import FeatureCardThirteen from '@/components/sections/feature/FeatureCardThirteen';
|
||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||
import ContactInline from '@/components/sections/contact/ContactInline';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -25,7 +25,7 @@ export default function LandingPage() {
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
<NavbarStyleApple
|
||||
brandName="Fashion Line"
|
||||
navItems={[
|
||||
{ name: "Shop", id: "products" },
|
||||
@@ -33,250 +33,153 @@ export default function LandingPage() {
|
||||
{ name: "Collections", id: "collections" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{
|
||||
text: "Shop Now",
|
||||
href: "products"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardCarouselSplit
|
||||
<HeroSplit
|
||||
title="Discover Your Style"
|
||||
description="Elevate your wardrobe with our curated collections of premium fashion pieces"
|
||||
buttons={[
|
||||
{ text: "Shop Collection", href: "products" },
|
||||
{ text: "View Latest", href: "collections" }
|
||||
]}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766970902462-fq7d1eo0.jpg",
|
||||
imageAlt: "Spring Collection"
|
||||
},
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766970903441-zprtqmcr.jpg",
|
||||
imageAlt: "Modern Fashion"
|
||||
},
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766970904295-jr9f1k8s.jpg",
|
||||
imageAlt: "Designer Pieces"
|
||||
},
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766970905364-bxf6hnts.jpg",
|
||||
imageAlt: "Elegant Styles"
|
||||
},
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766250302553-fgnqh61i.jpg",
|
||||
imageAlt: "Casual Wear"
|
||||
}
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766970902462-fq7d1eo0.jpg"
|
||||
imageAlt="Fashion Collection"
|
||||
imagePosition="right"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TextAbout
|
||||
title="We believe that fashion is a form of self-expression. Every piece in our collection is carefully curated to empower you to showcase your unique style and personality with confidence."
|
||||
<TagAbout
|
||||
tag="About Us"
|
||||
description="We believe that fashion is a form of self-expression. Every piece in our collection is carefully curated to empower you to showcase your unique style and personality with confidence."
|
||||
useInvertedBackground="noInvert"
|
||||
buttons={[
|
||||
{ text: "Learn Our Story", href: "#" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardThree
|
||||
<ProductCardFive
|
||||
title="Shop Our Collection"
|
||||
description="Handpicked pieces for every occasion"
|
||||
animationType="slide-up"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground="noInvert"
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Classic White Tee",
|
||||
price: "$39.99",
|
||||
button: { text: "Add to Cart" },
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766247954480-jda2xd2t.jpg",
|
||||
imageAlt: "Classic White Tee",
|
||||
initialQuantity: 1
|
||||
isFavorited: false
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Denim Jeans",
|
||||
price: "$79.99",
|
||||
button: { text: "Add to Cart" },
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766970908834-ezpq8k8z.jpg",
|
||||
imageAlt: "Denim Jeans",
|
||||
initialQuantity: 1
|
||||
isFavorited: false
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Cozy Sweater",
|
||||
price: "$69.99",
|
||||
button: { text: "Add to Cart" },
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766970909738-qt6a7fn8.jpg",
|
||||
imageAlt: "Cozy Sweater",
|
||||
initialQuantity: 1
|
||||
isFavorited: false
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Leather Jacket",
|
||||
price: "$149.99",
|
||||
button: { text: "Add to Cart" },
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766970904295-jr9f1k8s.jpg",
|
||||
imageAlt: "Leather Jacket",
|
||||
initialQuantity: 1
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Evening Dress",
|
||||
price: "$129.99",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766250302553-fgnqh61i.jpg",
|
||||
imageAlt: "Evening Dress",
|
||||
initialQuantity: 1
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Designer Shoes",
|
||||
price: "$119.99",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766970910612-4yvyxdsm.jpg",
|
||||
imageAlt: "Designer Shoes",
|
||||
initialQuantity: 1
|
||||
isFavorited: false
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="collections" data-section="collections">
|
||||
<FeatureCardTwelve
|
||||
<FeatureCardThirteen
|
||||
title="Shop By Season"
|
||||
description="Explore our carefully curated seasonal collections"
|
||||
textboxLayout="default"
|
||||
animationType="opacity"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground="noInvert"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
features={[
|
||||
{
|
||||
id: "spring",
|
||||
label: "Spring",
|
||||
title: "Fresh and Light Collections",
|
||||
items: [
|
||||
"Pastel colors and soft textures",
|
||||
"Breathable fabrics for warm weather",
|
||||
"Floral patterns and feminine silhouettes"
|
||||
]
|
||||
id: "01",
|
||||
title: "Spring",
|
||||
description: "Fresh and Light Collections"
|
||||
},
|
||||
{
|
||||
id: "summer",
|
||||
label: "Summer",
|
||||
title: "Bright and Vibrant Styles",
|
||||
items: [
|
||||
"Bold colors and eye-catching designs",
|
||||
"Lightweight and comfortable pieces",
|
||||
"Perfect for beach and outdoor adventures"
|
||||
]
|
||||
id: "02",
|
||||
title: "Summer",
|
||||
description: "Bright and Vibrant Styles"
|
||||
},
|
||||
{
|
||||
id: "fall",
|
||||
label: "Fall",
|
||||
title: "Warm and Cozy Pieces",
|
||||
items: [
|
||||
"Rich, earthy tones and layering",
|
||||
"Textured fabrics and patterns",
|
||||
"Perfect for transitional weather"
|
||||
]
|
||||
id: "03",
|
||||
title: "Fall",
|
||||
description: "Warm and Cozy Pieces"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwelve
|
||||
cardTitle="Over 5,000 customers love our fashion and quality"
|
||||
cardTag="Customer Testimonials"
|
||||
<TestimonialCardTen
|
||||
title="Customer Love Stories"
|
||||
description="See what our customers have to say about our fashion and quality"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground="noInvert"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Perfect fit and quality",
|
||||
quote: "The quality of the pieces I received exceeded my expectations. Customer service was amazing!",
|
||||
name: "Sarah Johnson",
|
||||
role: "Fashion Enthusiast",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766154635301-vse33sxl.jpg",
|
||||
imageAlt: "Sarah Johnson"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Amazing customer service",
|
||||
quote: "Best shopping experience ever. The team was so helpful and responsive to my questions.",
|
||||
name: "Emma Davis",
|
||||
role: "Loyal Customer",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766183842429-uezzjpov.jpg",
|
||||
imageAlt: "Emma Davis"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Style elevated instantly",
|
||||
quote: "Every piece from this collection makes me feel confident and stylish. Highly recommend!",
|
||||
name: "Lisa Chen",
|
||||
role: "Style Blogger",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766184309647-aqbmmuiq.jpg",
|
||||
imageAlt: "Lisa Chen"
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Jessica Anderson",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766849444575-td00y2fe.jpg",
|
||||
imageAlt: "Jessica Anderson"
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Michelle Lee",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766152144682-htnjk2vn.jpg",
|
||||
imageAlt: "Michelle Lee"
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Rachel Taylor",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766152149165-8nddns07.jpg",
|
||||
imageAlt: "Rachel Taylor"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
text="Ready to refresh your wardrobe? Join our community and be the first to know about new collections, exclusive offers, and style tips delivered straight to your inbox."
|
||||
<ContactInline
|
||||
text="Ready to refresh your wardrobe? Join our community and be the first to know about new collections, exclusive offers, and style tips."
|
||||
animationType="entrance-slide"
|
||||
useInvertedBackground="noInvert"
|
||||
buttons={[
|
||||
{ text: "Subscribe Now", href: "#" },
|
||||
{ text: "Get Styling Tips", href: "#" }
|
||||
]}
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Subscribe"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
copyrightText="© 2025 Fashion Line | All rights reserved"
|
||||
columns={[
|
||||
{
|
||||
title: "Shop",
|
||||
items: [
|
||||
{ label: "New Arrivals", href: "#" },
|
||||
{ label: "Collections", href: "collections" },
|
||||
{ label: "Sale", href: "#" },
|
||||
{ label: "Best Sellers", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{ label: "About Us", href: "about" },
|
||||
{ label: "Contact", href: "contact" },
|
||||
{ label: "Careers", href: "#" },
|
||||
{ label: "Press", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Return Policy", href: "#" },
|
||||
{ label: "Shipping Info", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
<FooterLogoReveal
|
||||
logoText="Fashion Line"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user