Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c45af746eb |
@@ -2,9 +2,9 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||
import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard";
|
||||
import HeroBillboardTestimonial from "@/components/sections/hero/HeroBillboardTestimonial";
|
||||
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
||||
import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
||||
import ProductCardFour from "@/components/sections/product/ProductCardFour";
|
||||
import FeatureBento from "@/components/sections/feature/FeatureBento";
|
||||
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
||||
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
|
||||
@@ -41,18 +41,19 @@ export default function DesertOudhPage() {
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboard
|
||||
logoText="Desert Oudh"
|
||||
<HeroBillboardTestimonial
|
||||
title="Desert Oudh"
|
||||
description="Harness the sacred spirit of the dunes. Rare, artisanal oudh meets contemporary skincare for a transformative, sensory experience."
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/sustainably-produced-alcoholic-beverage_23-2150163007.jpg"
|
||||
imageAlt="Luxurious golden sands and elegant oudh perfume bottle"
|
||||
frameStyle="card"
|
||||
testimonials={[
|
||||
{ name: "Amara J.", handle: "@wellnesscurator", testimonial: "The scent is intoxicating and the skin-softening benefits are the real miracle.", rating: 5 }
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Explore Collection", href: "#products" },
|
||||
{ text: "Our Ethos", href: "#about" }
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -60,8 +61,7 @@ export default function DesertOudhPage() {
|
||||
<InlineImageSplitTextAbout
|
||||
heading={[
|
||||
{ type: "text", content: "Born from the silence of the shifting sands, Desert Oudh honors ancient rituals with pure, sustainably sourced botanical oils and high-potency active ingredients." },
|
||||
{ type: "image", src: "http://img.b2bpic.net/free-photo/still-life-details-interior_169016-6347.jpg", alt: "Rare oudh ingredients and artisan glass" },
|
||||
{ type: "text", content: "" }
|
||||
{ type: "image", src: "http://img.b2bpic.net/free-photo/still-life-details-interior_169016-6347.jpg", alt: "Rare oudh ingredients and artisan glass" }
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
useInvertedBackground={true}
|
||||
@@ -72,13 +72,13 @@ export default function DesertOudhPage() {
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardOne
|
||||
<ProductCardFour
|
||||
title="Artisanal Apothecary"
|
||||
description="Hand-blended formulations designed to nourish, protect, and scent your skin with the golden warmth of the desert."
|
||||
products={[
|
||||
{ id: "1", name: "Midnight Oudh Elixir", price: "$125", imageSrc: "http://img.b2bpic.net/free-photo/sotol-drink-still-life_23-2151057999.jpg", imageAlt: "Oudh body oil" },
|
||||
{ id: "2", name: "Dune Radiance Serum", price: "$95", imageSrc: "http://img.b2bpic.net/free-photo/close-up-elegant-beauty-selfcare-treatment_23-2149238282.jpg", imageAlt: "Radiance serum" },
|
||||
{ id: "3", name: "Golden Sand Scrub", price: "$78", imageSrc: "http://img.b2bpic.net/free-photo/still-life-refillable-reusable-container_23-2150936106.jpg", imageAlt: "Exfoliating scrub" }
|
||||
{ id: "1", name: "Midnight Oudh Elixir", price: "$125", variant: "Signature", imageSrc: "http://img.b2bpic.net/free-photo/sotol-drink-still-life_23-2151057999.jpg" },
|
||||
{ id: "2", name: "Dune Radiance Serum", price: "$95", variant: "Advanced", imageSrc: "http://img.b2bpic.net/free-photo/close-up-elegant-beauty-selfcare-treatment_23-2149238282.jpg" },
|
||||
{ id: "3", name: "Golden Sand Scrub", price: "$78", variant: "Exfoliating", imageSrc: "http://img.b2bpic.net/free-photo/still-life-refillable-reusable-container_23-2150936106.jpg" }
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
@@ -108,9 +108,7 @@ export default function DesertOudhPage() {
|
||||
rating={5}
|
||||
author="Amara J., Wellness Curator"
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/beauty-woman-face-closeup-isolated-black-background-beautiful-model-girl-makeup-gorgeous-lady-with-perfect-skin_639032-159.jpg", alt: "User" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/woman-wearing-earphones-against-blue-backdrop-with-flowers_23-2151963247.jpg", alt: "User" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-beautiful-smiling-female-white-lingerie-towel-head_158538-18051.jpg", alt: "User" }
|
||||
{ src: "http://img.b2bpic.net/free-photo/beauty-woman-face-closeup-isolated-black-background-beautiful-model-girl-makeup-gorgeous-lady-with-perfect-skin_639032-159.jpg", alt: "User" }
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
@@ -125,17 +123,12 @@ export default function DesertOudhPage() {
|
||||
faqs={[
|
||||
{ id: "1", title: "Is your Oudh ethically sourced?", content: "Yes, we work exclusively with certified fair-trade cooperatives in Southeast Asia." },
|
||||
{ id: "2", title: "How do I layer these products?", content: "Start with the Serum, then lock in moisture with the Elixir for maximum absorption." },
|
||||
{ id: "3", title: "Are these products vegan?", content: "Entirely. We use zero animal-derived ingredients in our entire collection." },
|
||||
{ id: "4", title: "Do you ship internationally?", content: "We offer express climate-controlled shipping to all corners of the globe." }
|
||||
{ id: "3", title: "Are these products vegan?", content: "Entirely. We use zero animal-derived ingredients in our entire collection." }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/still-life-world-science-day-composition_23-2149132673.jpg"
|
||||
imageAlt="The distillation process"
|
||||
mediaPosition="left"
|
||||
textboxLayout="default"
|
||||
faqsAnimation="slide-up"
|
||||
mediaAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
animationType="smooth"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -149,7 +142,6 @@ export default function DesertOudhPage() {
|
||||
useInvertedBackground={false}
|
||||
inputPlaceholder="Your email address"
|
||||
buttonText="Subscribe"
|
||||
termsText="We prioritize your privacy above all else."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -158,8 +150,7 @@ export default function DesertOudhPage() {
|
||||
logoText="Desert Oudh"
|
||||
columns={[
|
||||
{ title: "Collection", items: [{ label: "Elixirs", href: "#" }, { label: "Serums", href: "#" }, { label: "Scrubs", href: "#" }] },
|
||||
{ title: "Brand", items: [{ label: "Our Story", href: "#" }, { label: "Ethics", href: "#" }, { label: "Careers", href: "#" }] },
|
||||
{ title: "Support", items: [{ label: "Shipping", href: "#" }, { label: "Returns", href: "#" }, { label: "Help", href: "#" }] }
|
||||
{ title: "Brand", items: [{ label: "Our Story", href: "#" }, { label: "Ethics", href: "#" }, { label: "Careers", href: "#" }] }
|
||||
]}
|
||||
copyrightText="© 2025 Desert Oudh. Sacred skincare preserved."
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user