35 Commits

Author SHA1 Message Date
922ef569a5 Merge version_13 into main
Merge version_13 into main
2026-05-07 11:10:44 +00:00
4664cbc3e2 Update theme fonts 2026-05-07 11:10:41 +00:00
0d10b89c21 Update theme fonts 2026-05-07 11:10:40 +00:00
9ba12c5942 Merge version_13 into main
Merge version_13 into main
2026-05-07 11:10:27 +00:00
6a7e13de16 Update theme fonts 2026-05-07 11:10:24 +00:00
7fde6b015c Update theme fonts 2026-05-07 11:10:23 +00:00
3d3acee098 Merge version_13 into main
Merge version_13 into main
2026-05-07 11:10:22 +00:00
10b0637862 Update theme fonts 2026-05-07 11:10:15 +00:00
034ad499fc Update theme fonts 2026-05-07 11:10:15 +00:00
d731cb2e44 Merge version_13 into main
Merge version_13 into main
2026-05-07 11:07:33 +00:00
ef85ce9c38 Update src/app/page.tsx 2026-05-07 11:07:30 +00:00
db6393fd83 Merge version_13 into main
Merge version_13 into main
2026-05-07 11:07:07 +00:00
f2107c3b1d Update src/app/page.tsx 2026-05-07 11:07:00 +00:00
6211e7bc99 Merge version_12 into main
Merge version_12 into main
2026-05-07 11:05:57 +00:00
2b5293bed3 Update theme colors 2026-05-07 11:05:53 +00:00
3c4635965d Merge version_11 into main
Merge version_11 into main
2026-05-07 11:05:47 +00:00
3a21384e2c Update theme colors 2026-05-07 11:05:44 +00:00
4f33bd73cc Merge version_10 into main
Merge version_10 into main
2026-05-07 11:05:33 +00:00
59401a550d Update theme colors 2026-05-07 11:05:30 +00:00
ee45442d02 Merge version_9 into main
Merge version_9 into main
2026-05-07 11:05:09 +00:00
0ca46e0f82 Update theme colors 2026-05-07 11:05:06 +00:00
3ad4a2ced4 Merge version_8 into main
Merge version_8 into main
2026-05-07 11:04:59 +00:00
c443434d95 Update theme colors 2026-05-07 11:04:56 +00:00
e01fbecf23 Merge version_7 into main
Merge version_7 into main
2026-05-07 11:04:07 +00:00
5371c32ddc Update theme colors 2026-05-07 11:04:03 +00:00
f47a11ef0a Merge version_6 into main
Merge version_6 into main
2026-05-07 11:04:03 +00:00
da1303147b Update theme colors 2026-05-07 11:04:00 +00:00
1ff029b901 Merge version_5 into main
Merge version_5 into main
2026-05-07 11:03:57 +00:00
b56a209861 Update theme colors 2026-05-07 11:03:54 +00:00
c83880b1bb Merge version_4 into main
Merge version_4 into main
2026-05-07 11:00:27 +00:00
453e392a41 Update theme colors 2026-05-07 11:00:23 +00:00
baeedf6e01 Merge version_3 into main
Merge version_3 into main
2026-05-07 11:00:08 +00:00
f7333f6b52 Update theme colors 2026-05-07 11:00:04 +00:00
84b6ff94a7 Merge version_2 into main
Merge version_2 into main
2026-05-07 10:59:00 +00:00
f9cd35dc71 Update theme colors 2026-05-07 10:58:56 +00:00
3 changed files with 58 additions and 306 deletions

View File

@@ -7,6 +7,8 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Nunito } from "next/font/google";
import { Mulish } from "next/font/google";
import { Montserrat } from "next/font/google";
@@ -25,7 +27,13 @@ export const metadata: Metadata = {
},
};
const nunito = Nunito({ variable: "--font-nunito", subsets: ["latin"] });
const nunito = Nunito({
variable: "--font-nunito",
subsets: ["latin"],
});
export default function RootLayout({
children,

View File

@@ -7,11 +7,10 @@ import ContactSplit from '@/components/sections/contact/ContactSplit';
import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine';
import FooterCard from '@/components/sections/footer/FooterCard';
import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import { Award, Facebook, Instagram, MapPin, Sparkles } from "lucide-react";
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import { Award, Facebook, Instagram, MapPin, Sparkles, CheckCircle2 } from "lucide-react";
export default function LandingPage() {
return (
@@ -31,22 +30,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "hero",
},
{
name: "About",
id: "about",
},
{
name: "Collections",
id: "products",
},
{
name: "Contact",
id: "contact",
},
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Products", id: "products" },
{ name: "Pricing", id: "pricing" },
{ name: "Contact", id: "contact" },
]}
brandName="Aura Archive"
/>
@@ -54,121 +42,25 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroSplitDoubleCarousel
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
title="Aura Archive: Timeless Elegance"
description="Crafting premium fashion with soul, rooted in the heritage of Surat, Gujarat."
leftCarouselItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/elegant-female-model-posing-window-elegant-waistcoat-new-feminity-concept_23-2148951061.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/men-s-clothing-store-indoor-shopping-center_23-2148225026.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-blue-suit-posing-with-mirror-outdoors_23-2149445026.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-woman-business-suit_1303-17721.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/student-with-goth-style-school_23-2150576841.jpg",
},
]}
rightCarouselItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/portrait-stylish-woman-posing-fashionable-outfit_23-2149021807.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/scrapbook-with-assortment-home-decorations_23-2149614070.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/portrait-stylish-woman-posing-fashionable-outfit_23-2149021803.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/clothing-store-with-blurred-effect_23-2148164791.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/empty-shopping-store-with-casual-formal-wear-design-retail-shop-with-fashionable-clothes-hangers-racks-modern-boutique-clothing-center-fashion-merchandise-sale_482257-63117.jpg",
},
]}
buttons={[
{
text: "View Collection",
href: "#products",
},
]}
avatars={[
{
src: "http://img.b2bpic.net/free-photo/full-length-portrait-man-suit-using-smartphone_171337-19117.jpg",
alt: "Client 1",
},
{
src: "http://img.b2bpic.net/free-photo/empty-fashion-boutique-shopaholic-modern-people-commercial-activity-with-merchandise-clothing-store-trendy-collections-formal-casual-wear-retail-market-shopping-center_482257-61768.jpg",
alt: "Client 2",
},
{
src: "http://img.b2bpic.net/free-photo/side-view-non-binary-person_23-2148757597.jpg",
alt: "Client 3",
},
{
src: "http://img.b2bpic.net/free-photo/handsome-stylish-african-american-guy-white-jacket-looking-aggressive-camera-isolated-white-background_574295-4462.jpg",
alt: "Client 4",
},
{
src: "http://img.b2bpic.net/free-photo/serious-young-redhead-curly-lady-standing-cafe-near-latrine_171337-17068.jpg",
alt: "Client 5",
},
]}
avatarText="Trusted by 5000+ fashion enthusiasts"
marqueeItems={[
{
type: "text",
text: "Timeless",
},
{
type: "text",
text: "Sustainable",
},
{
type: "text",
text: "Bespoke",
},
{
type: "text",
text: "Artisanal",
},
{
type: "text",
text: "Elegant",
},
]}
leftCarouselItems={[{ imageSrc: "http://img.b2bpic.net/free-photo/elegant-female-model-posing-window-elegant-waistcoat-new-feminity-concept_23-2148951061.jpg" }]}
rightCarouselItems={[{ imageSrc: "http://img.b2bpic.net/free-photo/portrait-stylish-woman-posing-fashionable-outfit_23-2149021807.jpg" }]}
buttons={[{ text: "View Collection", href: "#products" }]}
/>
</div>
<div id="about" data-section="about">
<AboutMetric
useInvertedBackground={false}
title="Our Legacy by Palak Patel"
metrics={[
{
icon: Award,
label: "Years in Fashion",
value: "10+",
},
{
icon: MapPin,
label: "Based in",
value: "Surat",
},
{
icon: Sparkles,
label: "Happy Clients",
value: "5000+",
},
{ icon: Award, label: "Years in Fashion", value: "10+" },
{ icon: MapPin, label: "Based in", value: "Surat" },
{ icon: Sparkles, label: "Happy Clients", value: "5000+" },
]}
metricsAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
@@ -178,46 +70,26 @@ export default function LandingPage() {
textboxLayout="split"
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={true}
products={[
{
id: "1",
name: "Silk Essence",
price: "₹2,500",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-sexy-model-woman-shiny-lace-evening-dress-posing-sitting-chair-beige-color_285396-7781.jpg",
},
{
id: "2",
name: "Modern Minimal",
price: "₹1,800",
imageSrc: "http://img.b2bpic.net/free-photo/woman-nature-with-clothesline_23-2148170341.jpg",
},
{
id: "3",
name: "Boho Chic",
price: "₹3,200",
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-stylish-model-posing_23-2148750334.jpg",
},
{
id: "4",
name: "Classic Elegance",
price: "₹4,500",
imageSrc: "http://img.b2bpic.net/free-photo/exclusive-offer-with-discount_23-2151912099.jpg",
},
{
id: "5",
name: "Artisanal Grace",
price: "₹5,000",
imageSrc: "http://img.b2bpic.net/free-photo/thread-roll-close-up_53876-88931.jpg",
},
{
id: "6",
name: "Evening Glare",
price: "₹6,500",
imageSrc: "http://img.b2bpic.net/free-photo/sexy-woman-black-clothes-sitting-chair_613910-8222.jpg",
},
]}
title="Signature Collection"
description="Hand-picked designs for the modern individual."
products={[
{ id: "1", name: "Silk Essence", price: "₹2,500", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-sexy-model-woman-shiny-lace-evening-dress-posing-sitting-chair-beige-color_285396-7781.jpg" },
{ id: "2", name: "Modern Minimal", price: "₹1,800", imageSrc: "http://img.b2bpic.net/free-photo/woman-nature-with-clothesline_23-2148170341.jpg" }
]}
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardOne
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
title="Choose Your Plan"
description="Simple pricing for premium style."
plans={[
{ id: "basic", badge: "Basic", price: "₹999", subtitle: "For starters", features: ["Standard access", "Weekly updates"] },
{ id: "pro", badge: "Pro", price: "₹2,499", subtitle: "For enthusiasts", features: ["Full access", "Priority support", "Exclusive drops"] }
]}
/>
</div>
@@ -226,163 +98,35 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="split"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
features={[
{
title: "Premium Textiles",
description: "Sourced from the finest mills.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-wool-texture-details_23-2149620438.jpg",
titleImageSrc: "http://img.b2bpic.net/free-photo/fabric-texture-background_1388-107.jpg",
buttonText: "Explore",
},
{
title: "Bespoke Tailoring",
description: "Precision crafted in Surat.",
imageSrc: "http://img.b2bpic.net/free-photo/hands-creating-clothes-close-up_23-2149007421.jpg",
titleImageSrc: "http://img.b2bpic.net/free-photo/senior-tailor-trainee-making-sketch-manufacture-clothes-apprentice-learning-about-handcraft-textile-industry-experienced-couturier-teaching-beginner-make-clothing-items_482257-65145.jpg",
buttonText: "Explore",
},
{
title: "Sustainable Style",
description: "Ethics meet high fashion.",
imageSrc: "http://img.b2bpic.net/free-photo/friends-getting-ready-drag-show_23-2149490857.jpg",
titleImageSrc: "http://img.b2bpic.net/free-photo/young-people-posing-studio-front-view_23-2149930772.jpg",
buttonText: "Explore",
},
]}
useInvertedBackground={true}
title="Why Aura Archive?"
description="Excellence in every stitch."
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardSeven
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={true}
metrics={[
{
id: "m1",
value: "100%",
title: "Authenticity",
items: [
"Handmade",
"Local Talent",
"Quality",
],
},
{
id: "m2",
value: "50+",
title: "New Designs",
items: [
"Seasonal",
"Fresh",
"Unique",
],
},
{
id: "m3",
value: "24/7",
title: "Customer Support",
items: [
"Always Here",
"Helpful",
"Friendly",
],
},
features={[
{ title: "Premium Textiles", description: "Sourced from the finest mills.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-wool-texture-details_23-2149620438.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/fabric-texture-background_1388-107.jpg", buttonText: "Explore" }
]}
title="Brand Milestones"
description="Driving the future of local fashion."
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardOne
animationType="slide-up"
textboxLayout="split"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
testimonials={[
{
id: "1",
name: "Priya Shah",
role: "Fashion Blogger",
company: "SuratStyle",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-beautiful-smiling-girl-trendy-summer-light-pink-dress-sexy-carefree-woman-posing-positive-model-having-fun-round-sunglasses_158538-5163.jpg",
},
{
id: "2",
name: "Rohan Mehta",
role: "Entrepreneur",
company: "TechSurat",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-enjoying-working-day-is-having-coffee-break-outdoor-cafe-cheerful-lady-with-coffee-hand_291650-1354.jpg",
},
{
id: "3",
name: "Ananya Desai",
role: "Interior Designer",
company: "HomePro",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/stylish-african-american-plus-size-model-streets-city-winter-day_627829-3380.jpg",
},
{
id: "4",
name: "Kavita Rao",
role: "Architect",
company: "Designs",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/unamused-woman-posing-with-man-chinese-new-year_23-2148357320.jpg",
},
{
id: "5",
name: "Siddharth Patel",
role: "CEO",
company: "Growth",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-leaning-wall_250224-223.jpg",
},
]}
title="What Clients Say"
description="Real love from our local community."
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={true}
background={{
variant: "radial-gradient",
}}
title="Get in Touch"
description="Join our newsletter for exclusive updates."
imageSrc="http://img.b2bpic.net/free-photo/side-view-woman-working-with-flowers_23-2149513704.jpg"
mediaAnimation="slide-up"
tag="Newsletter"
background={{ variant: "plain" }}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Aura Archive"
copyrightText="© 2025 Aura Archive, Surat. All rights reserved."
socialLinks={[
{
icon: Instagram,
href: "#",
ariaLabel: "Instagram",
},
{
icon: Facebook,
href: "#",
ariaLabel: "Facebook",
},
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ icon: Facebook, href: "#", ariaLabel: "Facebook" }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #f5f4ef;
--card: #dad6cd;
--foreground: #2a2928;
--primary-cta: #2a2928;
--primary-cta-text: #f5f4ef;
--secondary-cta: #ecebea;
--secondary-cta-text: #2a2928;
--accent: #ffffff;
--background-accent: #c6b180;
--background: #f5f4f0;
--card: #ffffff;
--foreground: #1a1a1a;
--primary-cta: #2c2c2c;
--primary-cta-text: #f5f4f0;
--secondary-cta: #f5f4f0;
--secondary-cta-text: #1a1a1a;
--accent: #8a8a8a;
--background-accent: #e8e6e1;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);