Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 81936039ee | |||
| ab914d4059 |
168
src/app/page.tsx
168
src/app/page.tsx
@@ -32,21 +32,13 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
name: "About", id: "about"},
|
||||
{
|
||||
name: "Products",
|
||||
id: "products",
|
||||
},
|
||||
name: "Products", id: "products"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="Al Hajis"
|
||||
/>
|
||||
@@ -58,9 +50,7 @@ export default function LandingPage() {
|
||||
description="Timeless elegance captured in every scent. Discover our signature collection of exquisite fragrances crafted for the discerning soul."
|
||||
buttons={[
|
||||
{
|
||||
text: "Shop Collection",
|
||||
href: "#products",
|
||||
},
|
||||
text: "Shop Collection", href: "#products"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-expensive-perfume-as-present-dark-table-gift-scent-fragnance-marriage-smell-love-feeling-holiday_140725-148352.jpg"
|
||||
imageAlt="luxury perfume bottle dark background"
|
||||
@@ -72,9 +62,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="The Art of Essence"
|
||||
description={[
|
||||
"Founded on the principles of traditional craftsmanship and modern luxury, Al Hajis Perfume brings you an unparalleled olfactory journey.",
|
||||
"Every bottle is a testament to our dedication to quality, sourcing the finest ingredients to create scents that linger in memory.",
|
||||
]}
|
||||
"Founded on the principles of traditional craftsmanship and modern luxury, Al Hajis Perfume brings you an unparalleled olfactory journey.", "Every bottle is a testament to our dedication to quality, sourcing the finest ingredients to create scents that linger in memory."]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -86,48 +74,19 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Amber Noir",
|
||||
price: "$150",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crystal-whiskey-bottle-alcohol-drinks-packaging_53876-110846.jpg",
|
||||
imageAlt: "golden perfume bottle studio shot",
|
||||
},
|
||||
id: "1", name: "Amber Noir", price: "$150", imageSrc: "http://img.b2bpic.net/free-photo/crystal-whiskey-bottle-alcohol-drinks-packaging_53876-110846.jpg", imageAlt: "golden perfume bottle studio shot"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Rose Oud",
|
||||
price: "$180",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bottle-perfume-based-soil-ingredients_23-2150756805.jpg",
|
||||
imageAlt: "floral scent perfume crystal bottle",
|
||||
},
|
||||
id: "2", name: "Rose Oud", price: "$180", imageSrc: "http://img.b2bpic.net/free-photo/bottle-perfume-based-soil-ingredients_23-2150756805.jpg", imageAlt: "floral scent perfume crystal bottle"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Desert Sand",
|
||||
price: "$125",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337714.jpg",
|
||||
imageAlt: "woody scent perfume classic bottle",
|
||||
},
|
||||
id: "3", name: "Desert Sand", price: "$125", imageSrc: "http://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337714.jpg", imageAlt: "woody scent perfume classic bottle"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Midnight Bloom",
|
||||
price: "$195",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/containers-liquid-soap-shampoo-with-dispenser-is-sold-supermarket_169016-49297.jpg",
|
||||
imageAlt: "exclusive perfume limited edition bottle",
|
||||
},
|
||||
id: "4", name: "Midnight Bloom", price: "$195", imageSrc: "http://img.b2bpic.net/free-photo/containers-liquid-soap-shampoo-with-dispenser-is-sold-supermarket_169016-49297.jpg", imageAlt: "exclusive perfume limited edition bottle"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Sandalwood Essence",
|
||||
price: "$160",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-still-life-with-herbal-medicine_23-2149292043.jpg",
|
||||
imageAlt: "aromatic perfume essence bottle",
|
||||
},
|
||||
id: "5", name: "Sandalwood Essence", price: "$160", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-still-life-with-herbal-medicine_23-2149292043.jpg", imageAlt: "aromatic perfume essence bottle"},
|
||||
{
|
||||
id: "6",
|
||||
name: "Royal Musk",
|
||||
price: "$220",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimal-arrangement-beauty-products_23-2148961323.jpg",
|
||||
imageAlt: "perfume collection professional shot",
|
||||
},
|
||||
id: "6", name: "Royal Musk", price: "$220", imageSrc: "http://img.b2bpic.net/free-photo/minimal-arrangement-beauty-products_23-2148961323.jpg", imageAlt: "perfume collection professional shot"},
|
||||
]}
|
||||
buttons={[{ text: "Explore Full Store", href: "/store" }]}
|
||||
title="Signature Collection"
|
||||
description="Our curated selection of premium fragrances, blending rare oils and timeless notes."
|
||||
/>
|
||||
@@ -141,23 +100,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Rare Ingredients",
|
||||
description: "We source the rarest botanical oils from across the globe.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-makes-chemical-experiment_140725-8187.jpg",
|
||||
imageAlt: "artisanal perfume distillation process",
|
||||
},
|
||||
title: "Rare Ingredients", description: "We source the rarest botanical oils from across the globe.", imageSrc: "http://img.b2bpic.net/free-photo/woman-makes-chemical-experiment_140725-8187.jpg", imageAlt: "artisanal perfume distillation process"},
|
||||
{
|
||||
title: "Long Lasting",
|
||||
description: "Formulated for longevity, our scents evolve elegantly throughout the day.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cosmetic-bottle-with-luxurious-art-nouveau-inspired-sun-relief-background_23-2151420734.jpg",
|
||||
imageAlt: "golden perfume bottle studio shot",
|
||||
},
|
||||
title: "Long Lasting", description: "Formulated for longevity, our scents evolve elegantly throughout the day.", imageSrc: "http://img.b2bpic.net/free-photo/cosmetic-bottle-with-luxurious-art-nouveau-inspired-sun-relief-background_23-2151420734.jpg", imageAlt: "golden perfume bottle studio shot"},
|
||||
{
|
||||
title: "Artisanal Craft",
|
||||
description: "Hand-blended in small batches to ensure perfect harmony.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-engagement-ring-plants_23-2148966191.jpg",
|
||||
imageAlt: "exclusive perfume limited edition bottle",
|
||||
},
|
||||
title: "Artisanal Craft", description: "Hand-blended in small batches to ensure perfect harmony.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-engagement-ring-plants_23-2148966191.jpg", imageAlt: "exclusive perfume limited edition bottle"},
|
||||
]}
|
||||
title="Why Al Hajis?"
|
||||
description="Our commitment to excellence ensures every drop provides an extraordinary experience."
|
||||
@@ -169,14 +116,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"Fragrance Weekly",
|
||||
"Luxury Lifestyle",
|
||||
"Perfume Times",
|
||||
"Scent Monthly",
|
||||
"Essence Digest",
|
||||
"Trend Mag",
|
||||
"Global Scent Review",
|
||||
]}
|
||||
"Fragrance Weekly", "Luxury Lifestyle", "Perfume Times", "Scent Monthly", "Essence Digest", "Trend Mag", "Global Scent Review"]}
|
||||
title="Trusted by Connoisseurs"
|
||||
description="Featured in leading luxury and lifestyle publications worldwide."
|
||||
/>
|
||||
@@ -190,50 +130,20 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Fatima A.",
|
||||
role: "Collector",
|
||||
company: "Abu Dhabi",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-female-talking-phone_23-2148238189.jpg",
|
||||
imageAlt: "satisfied perfume customer portrait",
|
||||
},
|
||||
id: "1", name: "Fatima A.", role: "Collector", company: "Abu Dhabi", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-female-talking-phone_23-2148238189.jpg", imageAlt: "satisfied perfume customer portrait"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Ahmed K.",
|
||||
role: "Professional",
|
||||
company: "Dubai",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-shopping-organic-products_23-2148672816.jpg",
|
||||
imageAlt: "man holding premium perfume",
|
||||
},
|
||||
id: "2", name: "Ahmed K.", role: "Professional", company: "Dubai", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-shopping-organic-products_23-2148672816.jpg", imageAlt: "man holding premium perfume"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Sara M.",
|
||||
role: "Entrepreneur",
|
||||
company: "Riyadh",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-luxury-blonde-woman-with-perfect-makeup-posing-holding-pink-rose_132075-9277.jpg",
|
||||
imageAlt: "young woman testing premium fragrance",
|
||||
},
|
||||
id: "3", name: "Sara M.", role: "Entrepreneur", company: "Riyadh", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-luxury-blonde-woman-with-perfect-makeup-posing-holding-pink-rose_132075-9277.jpg", imageAlt: "young woman testing premium fragrance"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Khalid S.",
|
||||
role: "Architect",
|
||||
company: "Doha",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-female-shop-assistant-checking-merchandise-apparel-shop_1098-20674.jpg",
|
||||
imageAlt: "stylish person perfume boutique",
|
||||
},
|
||||
id: "4", name: "Khalid S.", role: "Architect", company: "Doha", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-female-shop-assistant-checking-merchandise-apparel-shop_1098-20674.jpg", imageAlt: "stylish person perfume boutique"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Noora L.",
|
||||
role: "Designer",
|
||||
company: "Muscat",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-rich-woman-sitting-home_23-2149722558.jpg",
|
||||
imageAlt: "happy customer perfume collection",
|
||||
},
|
||||
id: "5", name: "Noora L.", role: "Designer", company: "Muscat", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-rich-woman-sitting-home_23-2149722558.jpg", imageAlt: "happy customer perfume collection"},
|
||||
]}
|
||||
title="Loved by You"
|
||||
description="Hear what our patrons say about their experience with Al Hajis."
|
||||
@@ -246,20 +156,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Are these natural ingredients?",
|
||||
content: "Yes, we use a blend of natural botanical extracts and high-grade synthetics for balance.",
|
||||
},
|
||||
id: "1", title: "Are these natural ingredients?", content: "Yes, we use a blend of natural botanical extracts and high-grade synthetics for balance."},
|
||||
{
|
||||
id: "2",
|
||||
title: "Do you offer samples?",
|
||||
content: "Yes, we offer discovery kits with small vials of our signature collection.",
|
||||
},
|
||||
id: "2", title: "Do you offer samples?", content: "Yes, we offer discovery kits with small vials of our signature collection."},
|
||||
{
|
||||
id: "3",
|
||||
title: "How long does shipping take?",
|
||||
content: "Local shipping takes 2-3 business days, international shipping takes 7-10 days.",
|
||||
},
|
||||
id: "3", title: "How long does shipping take?", content: "Local shipping takes 2-3 business days, international shipping takes 7-10 days."},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-women-working-as-wedding-planners_23-2150328558.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
@@ -274,16 +175,13 @@ export default function LandingPage() {
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
tag="Inquiry"
|
||||
title="Visit Our Boutique"
|
||||
description="Book a private scent consultation with our experts at our flagship boutique."
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Us",
|
||||
href: "mailto:hello@alhajis.com",
|
||||
},
|
||||
text: "Contact Us", href: "mailto:hello@alhajis.com"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -297,4 +195,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user