15 Commits

Author SHA1 Message Date
d263800ccc Merge version_3 into main
Merge version_3 into main
2026-04-24 18:04:27 +00:00
e9ceb9622a Update src/app/premium-hampers/page.tsx 2026-04-24 18:04:24 +00:00
14968745f0 Update src/app/mandala-sets/page.tsx 2026-04-24 18:04:23 +00:00
d757a43957 Update src/app/custom-hampers/page.tsx 2026-04-24 18:04:23 +00:00
6c1b16232c Merge version_3 into main
Merge version_3 into main
2026-04-24 18:03:56 +00:00
01f1cb1936 Add src/app/premium-hampers/page.tsx 2026-04-24 18:03:53 +00:00
52ba797a19 Update src/app/page.tsx 2026-04-24 18:03:52 +00:00
32e0acd4b9 Add src/app/mandala-sets/page.tsx 2026-04-24 18:03:52 +00:00
5e52107221 Add src/app/custom-hampers/page.tsx 2026-04-24 18:03:51 +00:00
414215ecab Merge version_2 into main
Merge version_2 into main
2026-04-24 14:33:24 +00:00
60c0b9a4f6 Update src/app/page.tsx 2026-04-24 14:33:18 +00:00
6e25f6e728 Merge version_2 into main
Merge version_2 into main
2026-04-24 14:32:57 +00:00
145749bc0f Update src/app/page.tsx 2026-04-24 14:32:51 +00:00
cf060b80db Merge version_2 into main
Merge version_2 into main
2026-04-24 14:32:24 +00:00
f6201b02fa Update src/app/page.tsx 2026-04-24 14:32:21 +00:00
4 changed files with 58 additions and 351 deletions

View File

@@ -0,0 +1,13 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
export default function CustomHampersPage() {
return (
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<NavbarStyleApple navItems={[{name: "Home", id: "/"}, {name: "Premium Hampers", id: "/premium-hampers"}, {name: "Custom Hampers", id: "/custom-hampers"}, {name: "Mandala Sets", id: "/mandala-sets"}]} brandName="AAROS" />
<ProductCardOne title="Custom Hampers" description="Tailored to your exact corporate gifting requirements." gridVariant="three-columns-all-equal-width" animationType="slide-up" textboxLayout="default" useInvertedBackground={false} />
</ThemeProvider>
);
}

View File

@@ -0,0 +1,13 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
export default function MandalaSetsPage() {
return (
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<NavbarStyleApple navItems={[{name: "Home", id: "/"}, {name: "Premium Hampers", id: "/premium-hampers"}, {name: "Custom Hampers", id: "/custom-hampers"}, {name: "Mandala Sets", id: "/mandala-sets"}]} brandName="AAROS" />
<ProductCardOne title="Mandala Set Collection" description="Intricate mandala artistry for meaningful gifts." gridVariant="three-columns-all-equal-width" animationType="slide-up" textboxLayout="default" useInvertedBackground={false} />
</ThemeProvider>
);
}

View File

@@ -2,15 +2,15 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit'; import ContactText from '@/components/sections/contact/ContactText';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import FooterBase from '@/components/sections/footer/FooterBase'; import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroBillboard from '@/components/sections/hero/HeroBillboard'; import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardOne from '@/components/sections/product/ProductCardOne'; import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
export default function LandingPage() { export default function LandingPage() {
@@ -31,22 +31,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleApple <NavbarStyleApple
navItems={[ navItems={[
{ { name: "Premium Hampers", id: "/premium-hampers" },
name: "Hampers", { name: "Custom Hampers", id: "/custom-hampers" },
id: "products", { name: "Mandala Sets", id: "/mandala-sets" },
}, { name: "Story", id: "#about" },
{ { name: "Contact", id: "#contact" },
name: "Story",
id: "about",
},
{
name: "Testimonials",
id: "testimonials",
},
{
name: "Contact",
id: "contact",
},
]} ]}
brandName="AAROS" brandName="AAROS"
/> />
@@ -54,346 +43,25 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboard <HeroBillboard
background={{ background={{ variant: "plain" }}
variant: "plain",
}}
title="Elevating Corporate Gifting with Artisanal Excellence" title="Elevating Corporate Gifting with Artisanal Excellence"
description="Discover AAROS: Where premium utility meets handcrafted perfection. From bespoke leather diaries to intricate crochet, redefine appreciation." description="Discover AAROS: Where premium utility meets handcrafted perfection. From bespoke leather diaries to intricate crochet, redefine appreciation."
buttons={[
{
text: "View Collection",
href: "#products",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/key-chain-flat-layout-with-place-text-jewellery-background-mockup-banner-fashion-accessories_460848-12603.jpg" imageSrc="http://img.b2bpic.net/free-photo/key-chain-flat-layout-with-place-text-jewellery-background-mockup-banner-fashion-accessories_460848-12603.jpg"
mediaAnimation="slide-up" mediaAnimation="slide-up"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/jewelry-lifestyle-fashion-accessories_460848-14017.jpg",
alt: "Customer testimonial",
},
{
src: "http://img.b2bpic.net/free-photo/jewelry-lifestyle-flat-layout-with-place-text-jewellery-background-mockup-banner-fashion-accessories_460848-12584.jpg",
alt: "Customer testimonial",
},
{
src: "http://img.b2bpic.net/free-photo/jewelry-lifestyle-flat-layout-with-place-text-jewellery-background-mockup-banner-fashion-accessories_460848-12592.jpg",
alt: "Customer testimonial",
},
{
src: "http://img.b2bpic.net/free-photo/jewelry-lifestyle-flat-layout-with-place-text-jewellery-background-mockup-banner-fashion-accessories_460848-12578.jpg",
alt: "Customer testimonial",
},
{
src: "http://img.b2bpic.net/free-photo/tidy-up-concept-with-cutlery-high-angle_23-2148927369.jpg",
alt: "Customer testimonial",
},
]}
avatarText="Trusted by 500+ companies"
marqueeItems={[
{
type: "text",
text: "Handcrafted Excellence",
},
{
type: "text",
text: "Sustainable Materials",
},
{
type: "text",
text: "Bespoke Customization",
},
{
type: "text",
text: "Corporate Elegance",
},
{
type: "text",
text: "Ethical Sourcing",
},
]}
/>
</div>
<div id="about" data-section="about">
<TextSplitAbout
useInvertedBackground={false}
title="The AAROS Commitment to Craft"
description={[
"Every AAROS hamper is a story of dedication. We believe that professional appreciation should be as unique as the individuals receiving it.",
"By blending functional tools with meticulous crochet and mandala art, we create gifts that leave a lasting professional impression.",
]}
/>
</div>
<div id="products" data-section="products">
<ProductCardOne
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
{
id: "1",
name: "Executive Leather Diary",
price: "Premium",
imageSrc: "http://img.b2bpic.net/free-photo/minimalist-office-workspace-with-black-notebook-laptop_23-2151968888.jpg",
},
{
id: "2",
name: "Hand-Woven Crochet Set",
price: "Custom",
imageSrc: "http://img.b2bpic.net/free-photo/cute-plush-toy-made-from-crochet_23-2151145649.jpg",
},
{
id: "3",
name: "Mandala Coaster Collection",
price: "Set",
imageSrc: "http://img.b2bpic.net/free-photo/colored-vases-cactus-interior-cafe-east-style-comfort-style_169016-4718.jpg",
},
{
id: "4",
name: "Artisanal Specs Cover",
price: "Unique",
imageSrc: "http://img.b2bpic.net/free-photo/fathers-day-composition-with-hipster-concept_23-2147790985.jpg",
},
{
id: "5",
name: "Personalized Gift Box",
price: "Curated",
imageSrc: "http://img.b2bpic.net/free-photo/carton-boxes-with-cones-walnuts_23-2147881289.jpg",
},
{
id: "6",
name: "Complete Corporate Bundle",
price: "Deluxe",
imageSrc: "http://img.b2bpic.net/free-photo/knitting-wool-thread-close-up_23-2148923301.jpg",
},
]}
title="Our Signature Curations"
description="Exquisitely curated bundles designed to impress clients and inspire teams."
/>
</div>
<div id="features" data-section="features">
<FeatureCardTwelve
animationType="slide-up"
textboxLayout="split-description"
useInvertedBackground={false}
features={[
{
id: "f1",
label: "Ethical",
title: "Sustainable Sourcing",
items: [
"Eco-friendly materials",
"Fair-trade practices",
"Minimal plastic",
],
},
{
id: "f2",
label: "Bespoke",
title: "Fully Custom",
items: [
"Branded engravings",
"Custom color themes",
"Tailored contents",
],
},
{
id: "f3",
label: "Quality",
title: "Premium Durability",
items: [
"Long-lasting materials",
"Hand-inspected crafts",
"Professional finish",
],
},
]}
title="Why Choose AAROS Hampers?"
description="We don't just provide gifts; we provide meaningful connections."
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardFourteen
useInvertedBackground={false}
title="Our Impact at a Glance"
tag="Trusted Quality"
metrics={[
{
id: "m1",
value: "500+",
description: "Corporate Partners",
},
{
id: "m2",
value: "12k+",
description: "Hampers Delivered",
},
{
id: "m3",
value: "100%",
description: "Artisan Crafted",
},
]}
metricsAnimation="slide-up"
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardThirteen
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{
id: "t1",
name: "Sarah Johnson",
handle: "HR Director",
testimonial: "The attention to detail on the crochet covers and diaries is impeccable. Our team loved them.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/top-view-female-hand-putting-marshmallow-into-present-box-with-yellow-color-tulip-flower-dark-chocolate-bar-cone-straw-dark-red-table-with-box-filled-with-marshmallow_141793-8843.jpg",
},
{
id: "t2",
name: "Mark Chen",
handle: "Founder",
testimonial: "Truly unique corporate gifts. AAROS added a human touch to our branding.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/blank-stationery-set-corporate-identity-template_93675-130793.jpg",
},
{
id: "t3",
name: "Emily Davis",
handle: "Operations Lead",
testimonial: "Excellent service and high-quality artisanal products. Highly recommended for any event.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/elevated-view-woman-inserting-thread-into-needle-near-textiles-wooden-table_23-2148193639.jpg",
},
{
id: "t4",
name: "David Kim",
handle: "Marketing VP",
testimonial: "Seamless bulk ordering process and exceptional presentation. We will return.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-vector/mandala-background-design_1197-104.jpg",
},
{
id: "t5",
name: "Fiona L.",
handle: "Team Coordinator",
testimonial: "The dot mandala coasters are the highlights of our new office desks. Stunning craftsmanship.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-glasses-wooden-board-with-yarn-blanket_23-2148791006.jpg",
},
]}
showRating={true}
title="Voices of Appreciation"
description="See why industry leaders trust AAROS for their gifting needs."
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitMedia
textboxLayout="split"
useInvertedBackground={false}
faqs={[
{
id: "q1",
title: "Can I customize the items?",
content: "Absolutely! We offer full customization for bulk corporate orders, including branding and item selection.",
},
{
id: "q2",
title: "What is the turnaround time?",
content: "For standard curated hampers, we deliver within 7-10 business days. Custom bespoke orders may take 2-3 weeks.",
},
{
id: "q3",
title: "Do you ship internationally?",
content: "Currently, we offer domestic shipping within the country with options for international shipping on special request.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/hands-assembling-advent-wreath_23-2150820772.jpg"
mediaAnimation="slide-up"
title="Frequently Asked Questions"
description="Got questions about our hampers? We have answers."
faqsAnimation="slide-up"
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={false}
background={{
variant: "plain",
}}
tag="Get in touch"
title="Ready to Curate Your Perfect Gift?"
description="Send us your inquiry and our team will get back to you with a personalized hamper proposal."
imageSrc="http://img.b2bpic.net/free-photo/financial-experts_1098-12913.jpg"
mediaAnimation="slide-up"
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBase <FooterMedia
columns={[ imageSrc="http://img.b2bpic.net/free-photo/knitting-wool-thread-close-up_23-2148923301.jpg?_wi=3"
{
title: "Navigation",
items: [
{
label: "Hampers",
href: "#products",
},
{
label: "About Us",
href: "#about",
},
{
label: "Testimonials",
href: "#testimonials",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
{
title: "Connect",
items: [
{
label: "Instagram",
href: "#",
},
{
label: "LinkedIn",
href: "#",
},
{
label: "Email Us",
href: "mailto:hello@aaros.com",
},
],
},
]}
logoText="AAROS" logoText="AAROS"
columns={[
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Premium Hampers", href: "/premium-hampers" }, { label: "Custom Hampers", href: "/custom-hampers" }, { label: "Mandala Sets", href: "/mandala-sets" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
]}
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -0,0 +1,13 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
export default function PremiumHampersPage() {
return (
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<NavbarStyleApple navItems={[{name: "Home", id: "/"}, {name: "Premium Hampers", id: "/premium-hampers"}, {name: "Custom Hampers", id: "/custom-hampers"}, {name: "Mandala Sets", id: "/mandala-sets"}]} brandName="AAROS" />
<ProductCardOne title="Premium Hampers" description="Our most exclusive and curated collections." gridVariant="three-columns-all-equal-width" animationType="slide-up" textboxLayout="default" useInvertedBackground={false} />
</ThemeProvider>
);
}