Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 37780a85d4 |
213
src/app/page.tsx
213
src/app/page.tsx
@@ -33,21 +33,13 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "hero"},
|
||||||
id: "hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About",
|
name: "About", id: "about"},
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Products",
|
name: "Products", id: "products"},
|
||||||
id: "products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="PAU ‘OLE"
|
brandName="PAU ‘OLE"
|
||||||
/>
|
/>
|
||||||
@@ -56,62 +48,39 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboard
|
<HeroBillboard
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "gradient-bars"}}
|
||||||
}}
|
|
||||||
title="Excellence in Every Detail."
|
title="Excellence in Every Detail."
|
||||||
description="Discover the craftsmanship of PAU ‘OLE. Where timeless quality meets modern design."
|
description="Discover the craftsmanship of PAU ‘OLE. Where timeless quality meets modern design."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Explore Collection",
|
text: "Explore Collection", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/cemant-surface-texture-abstract-background_53876-97457.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/cemant-surface-texture-abstract-background_53876-97457.jpg"
|
||||||
imageAlt="PAU ‘OLE Artisan Craft"
|
imageAlt="PAU ‘OLE Artisan Craft"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/simple-smooth-fabric-textured-background_53876-104856.jpg",
|
src: "http://img.b2bpic.net/free-photo/simple-smooth-fabric-textured-background_53876-104856.jpg", alt: "elegant lifestyle product photography"},
|
||||||
alt: "elegant lifestyle product photography",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/stylish-memphis-abstract-background-design_53876-102499.jpg",
|
src: "http://img.b2bpic.net/free-photo/stylish-memphis-abstract-background-design_53876-102499.jpg", alt: "Stylish Memphis abstract background design"},
|
||||||
alt: "Stylish Memphis abstract background design",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/brown-acrylic-texture-background-with-leaf-shadow_53876-98378.jpg",
|
src: "http://img.b2bpic.net/free-photo/brown-acrylic-texture-background-with-leaf-shadow_53876-98378.jpg", alt: "Brown acrylic texture background with leaf shadow"},
|
||||||
alt: "Brown acrylic texture background with leaf shadow",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/abstract-earth-tone-paint-white_53876-104001.jpg",
|
src: "http://img.b2bpic.net/free-photo/abstract-earth-tone-paint-white_53876-104001.jpg", alt: "Abstract earth tone paint on white"},
|
||||||
alt: "Abstract earth tone paint on white",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/empty-art-studio-with-nobody-it-is-ready-painting-lesson-art-studio-modern-atelier-with-vase-chair-using-imagination-professional-sketch-tools-table-concept-creativity_482257-30104.jpg",
|
src: "http://img.b2bpic.net/free-photo/empty-art-studio-with-nobody-it-is-ready-painting-lesson-art-studio-modern-atelier-with-vase-chair-using-imagination-professional-sketch-tools-table-concept-creativity_482257-30104.jpg", alt: "Modern atelier"},
|
||||||
alt: "Modern atelier",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Bespoke Quality"},
|
||||||
text: "Bespoke Quality",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Artisan Heritage"},
|
||||||
text: "Artisan Heritage",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Timeless Elegance"},
|
||||||
text: "Timeless Elegance",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Refined Detail"},
|
||||||
text: "Refined Detail",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Modern Craft"},
|
||||||
text: "Modern Craft",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -136,21 +105,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
negativeCard={{
|
negativeCard={{
|
||||||
items: [
|
items: [
|
||||||
"Lack of precision",
|
"Lack of precision", "Generic designs", "Compromised quality", "Inconsistent finish", "Short-lived aesthetics"],
|
||||||
"Generic designs",
|
|
||||||
"Compromised quality",
|
|
||||||
"Inconsistent finish",
|
|
||||||
"Short-lived aesthetics",
|
|
||||||
],
|
|
||||||
}}
|
}}
|
||||||
positiveCard={{
|
positiveCard={{
|
||||||
items: [
|
items: [
|
||||||
"Superior precision",
|
"Superior precision", "Bespoke craftsmanship", "Timeless excellence", "Hand-selected materials", "Attention to detail"],
|
||||||
"Bespoke craftsmanship",
|
|
||||||
"Timeless excellence",
|
|
||||||
"Hand-selected materials",
|
|
||||||
"Attention to detail",
|
|
||||||
],
|
|
||||||
}}
|
}}
|
||||||
title="The PAU ‘OLE Advantage"
|
title="The PAU ‘OLE Advantage"
|
||||||
description="We don't believe in cutting corners. We elevate your expectations."
|
description="We don't believe in cutting corners. We elevate your expectations."
|
||||||
@@ -165,41 +124,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Refined Classic", price: "$125", imageSrc: "http://img.b2bpic.net/free-photo/white-sports-equipment_23-2151920908.jpg"},
|
||||||
name: "Refined Classic",
|
|
||||||
price: "$125",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/white-sports-equipment_23-2151920908.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Artisan Essential", price: "$89", imageSrc: "http://img.b2bpic.net/free-photo/metal-circle-front-black-wall_181624-6880.jpg"},
|
||||||
name: "Artisan Essential",
|
|
||||||
price: "$89",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/metal-circle-front-black-wall_181624-6880.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Signature Piece", price: "$210", imageSrc: "http://img.b2bpic.net/free-photo/hand-worker-with-empty-bottle-man-s-hand-close-up-concept-production_1157-43477.jpg"},
|
||||||
name: "Signature Piece",
|
|
||||||
price: "$210",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/hand-worker-with-empty-bottle-man-s-hand-close-up-concept-production_1157-43477.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Modern Minimalist", price: "$155", imageSrc: "http://img.b2bpic.net/free-photo/high-anglebeautiful-love-letters_23-2150716566.jpg"},
|
||||||
name: "Modern Minimalist",
|
|
||||||
price: "$155",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/high-anglebeautiful-love-letters_23-2150716566.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Elite Craft", price: "$295", imageSrc: "http://img.b2bpic.net/free-photo/close-up-engraving-art-tools_23-2149186763.jpg"},
|
||||||
name: "Elite Craft",
|
|
||||||
price: "$295",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-engraving-art-tools_23-2149186763.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6", name: "Heritage Gold", price: "$450", imageSrc: "http://img.b2bpic.net/free-photo/composition-natural-argan-seeds_23-2149016622.jpg"},
|
||||||
name: "Heritage Gold",
|
|
||||||
price: "$450",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/composition-natural-argan-seeds_23-2149016622.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Curated Collection"
|
title="Curated Collection"
|
||||||
description="Exquisite items crafted for those who appreciate the fine art of living."
|
description="Exquisite items crafted for those who appreciate the fine art of living."
|
||||||
@@ -213,23 +148,14 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "m1",
|
id: "m1", icon: Award,
|
||||||
icon: Award,
|
title: "Years of Excellence", value: "15+"},
|
||||||
title: "Years of Excellence",
|
|
||||||
value: "15+",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m2",
|
id: "m2", icon: Users,
|
||||||
icon: Users,
|
title: "Satisfied Clients", value: "1200+"},
|
||||||
title: "Satisfied Clients",
|
|
||||||
value: "1200+",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m3",
|
id: "m3", icon: CheckCircle,
|
||||||
icon: CheckCircle,
|
title: "Products Crafted", value: "5000+"},
|
||||||
title: "Products Crafted",
|
|
||||||
value: "5000+",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="By The Numbers"
|
title="By The Numbers"
|
||||||
description="Proven results, satisfied clients, and a legacy we are proud of."
|
description="Proven results, satisfied clients, and a legacy we are proud of."
|
||||||
@@ -243,59 +169,28 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "t1",
|
id: "t1", name: "Sarah Miller", role: "Designer", company: "Studio X", rating: 5,
|
||||||
name: "Sarah Miller",
|
imageSrc: "http://img.b2bpic.net/free-photo/smiling-beautiful-middle-aged-business-woman_1262-3085.jpg"},
|
||||||
role: "Designer",
|
|
||||||
company: "Studio X",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-beautiful-middle-aged-business-woman_1262-3085.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t2",
|
id: "t2", name: "David Chen", role: "Curator", company: "Artisan Guild", rating: 5,
|
||||||
name: "David Chen",
|
imageSrc: "http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-eyeglasses-crossed-arms-grey-background_613910-11786.jpg"},
|
||||||
role: "Curator",
|
|
||||||
company: "Artisan Guild",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-eyeglasses-crossed-arms-grey-background_613910-11786.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t3",
|
id: "t3", name: "Emily Rose", role: "Collector", company: "Private", rating: 5,
|
||||||
name: "Emily Rose",
|
imageSrc: "http://img.b2bpic.net/free-photo/happy-modern-woman-posing-sunlight-looking-camera_23-2148229365.jpg"},
|
||||||
role: "Collector",
|
|
||||||
company: "Private",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-modern-woman-posing-sunlight-looking-camera_23-2148229365.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t4",
|
id: "t4", name: "Marcus Vane", role: "Interior Designer", company: "Home Deco", rating: 5,
|
||||||
name: "Marcus Vane",
|
imageSrc: "http://img.b2bpic.net/free-photo/side-view-unknown-young-man-posing_23-2149417574.jpg"},
|
||||||
role: "Interior Designer",
|
|
||||||
company: "Home Deco",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-unknown-young-man-posing_23-2149417574.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t5",
|
id: "t5", name: "Julia Thorne", role: "Architect", company: "Space Plan", rating: 5,
|
||||||
name: "Julia Thorne",
|
imageSrc: "http://img.b2bpic.net/free-photo/athletic-tattooed-man-white-blank-tank-t-shirt-stretching-his-triceps-arms-after-workout-isolated-brick-wall_346278-1587.jpg"},
|
||||||
role: "Architect",
|
|
||||||
company: "Space Plan",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/athletic-tattooed-man-white-blank-tank-t-shirt-stretching-his-triceps-arms-after-workout-isolated-brick-wall_346278-1587.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
kpiItems={[
|
kpiItems={[
|
||||||
{
|
{
|
||||||
value: "99%",
|
value: "99%", label: "Retention"},
|
||||||
label: "Retention",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
value: "5.0",
|
value: "5.0", label: "Avg Rating"},
|
||||||
label: "Avg Rating",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
value: "24/7",
|
value: "24/7", label: "Support"},
|
||||||
label: "Support",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Trusted by Experts"
|
title="Trusted by Experts"
|
||||||
description="See why professionals choose PAU ‘OLE for their collections."
|
description="See why professionals choose PAU ‘OLE for their collections."
|
||||||
@@ -308,20 +203,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "f1",
|
id: "f1", title: "How long for shipping?", content: "Orders are processed within 48 hours."},
|
||||||
title: "How long for shipping?",
|
|
||||||
content: "Orders are processed within 48 hours.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f2",
|
id: "f2", title: "Do you accept returns?", content: "We offer a 30-day money-back guarantee."},
|
||||||
title: "Do you accept returns?",
|
|
||||||
content: "We offer a 30-day money-back guarantee.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f3",
|
id: "f3", title: "Is custom work available?", content: "Yes, please contact our support team."},
|
||||||
title: "Is custom work available?",
|
|
||||||
content: "Yes, please contact our support team.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Common Questions"
|
title="Common Questions"
|
||||||
description="Answers to help you understand our process."
|
description="Answers to help you understand our process."
|
||||||
@@ -333,16 +219,13 @@ export default function LandingPage() {
|
|||||||
<ContactCTA
|
<ContactCTA
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
tag="Contact"
|
tag="Contact"
|
||||||
title="Ready to Start?"
|
title="Ready to Start?"
|
||||||
description="Reach out to us for inquiries, custom orders, or collaborations."
|
description="Reach out to us for inquiries, custom orders, or collaborations."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Get In Touch",
|
text: "Get In Touch", href: "mailto:hello@pauole.com"},
|
||||||
href: "mailto:hello@pauole.com",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user