Update src/app/page.tsx
This commit is contained in:
287
src/app/page.tsx
287
src/app/page.tsx
@@ -31,93 +31,42 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "#hero",
|
||||
},
|
||||
{
|
||||
name: "Collections",
|
||||
id: "#collections",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
{ name: "Home", id: "#hero" },
|
||||
{ name: "Collections", id: "#collections" },
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Contact", id: "#contact" }
|
||||
]}
|
||||
brandName="Novera Living"
|
||||
button={{ text: "Contact Us", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
title="Timeless Living. Designed With Warmth."
|
||||
description="Elegant interiors and curated decor inspiration for modern sophisticated homes."
|
||||
buttons={[
|
||||
{
|
||||
text: "Explore Collection",
|
||||
href: "#collections",
|
||||
},
|
||||
{
|
||||
text: "Discover Inspiration",
|
||||
href: "#inspiration",
|
||||
},
|
||||
{ text: "Explore Collection", href: "#collections" },
|
||||
{ text: "Discover Inspiration", href: "#inspiration" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/luxurious-lifestyle-rich-woman_52683-97512.jpg"
|
||||
imageAlt="Luxurious modern interior"
|
||||
mediaAnimation="blur-reveal"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/view-modern-futuristic-work-space-with-furniture_23-2151797707.jpg",
|
||||
alt: "Client profile 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/decorative-home-plant-vase-composition_23-2149090642.jpg",
|
||||
alt: "Client profile 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/modern-clean-interior-design_23-2151929389.jpg",
|
||||
alt: "Client profile 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/details-decor-table-living-room-hygge-style_169016-10641.jpg",
|
||||
alt: "Client profile 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/mix-minimal-nordic-interior-design-with-japanese-wabi-sabi-style_23-2151160098.jpg",
|
||||
alt: "Client profile 5",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/view-modern-futuristic-work-space-with-furniture_23-2151797707.jpg", alt: "Client profile 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/decorative-home-plant-vase-composition_23-2149090642.jpg", alt: "Client profile 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/modern-clean-interior-design_23-2151929389.jpg", alt: "Client profile 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/details-decor-table-living-room-hygge-style_169016-10641.jpg", alt: "Client profile 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/mix-minimal-nordic-interior-design-with-japanese-wabi-sabi-style_23-2151160098.jpg", alt: "Client profile 5" }
|
||||
]}
|
||||
avatarText="Trusted by 500+ design enthusiasts."
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Minimal Luxury",
|
||||
},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/blend-minimal-nordic-interior-design-with-japanese-wabi-sabi-style_23-2151160091.jpg",
|
||||
alt: "Design trend 1",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Organic Warmth",
|
||||
},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/armchair-couch-with-cushions_1203-763.jpg",
|
||||
alt: "Design trend 2",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Sophisticated",
|
||||
},
|
||||
{ type: "text", text: "Minimal Luxury" },
|
||||
{ type: "image", src: "http://img.b2bpic.net/free-photo/blend-minimal-nordic-interior-design-with-japanese-wabi-sabi-style_23-2151160091.jpg", alt: "Design trend 1" },
|
||||
{ type: "text", text: "Organic Warmth" },
|
||||
{ type: "image", src: "http://img.b2bpic.net/free-photo/armchair-couch-with-cushions_1203-763.jpg", alt: "Design trend 2" },
|
||||
{ type: "text", text: "Sophisticated" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -127,8 +76,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Modern Luxury Living"
|
||||
description={[
|
||||
"At Novera Living, we specialize in cozy interiors and timeless spaces. We believe your home should be a reflection of calm, sophistication, and warmth.",
|
||||
"Our mission is to bring high-end inspiration to every corner of your daily living.",
|
||||
"At Novera Living, we specialize in cozy interiors and timeless spaces. We believe your home should be a reflection of calm, sophistication, and warmth.", "Our mission is to bring high-end inspiration to every corner of your daily living."
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -137,62 +85,15 @@ export default function LandingPage() {
|
||||
<ProductCardTwo
|
||||
textboxLayout="split"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
brand: "Novera",
|
||||
name: "Organic Ceramic Vase",
|
||||
price: "$120",
|
||||
rating: 5,
|
||||
reviewCount: "24",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-minimalist-fireplace-sofa_23-2148238607.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
brand: "Novera",
|
||||
name: "Walnut Accent Chair",
|
||||
price: "$850",
|
||||
rating: 5,
|
||||
reviewCount: "12",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3d-room-decor-with-furniture-minimalist-beige-tones_23-2150767045.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
brand: "Novera",
|
||||
name: "Linen Throw Blanket",
|
||||
price: "$290",
|
||||
rating: 5,
|
||||
reviewCount: "45",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3d-contemporary-living-room-interior-modern-furniture_1048-17766.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
brand: "Novera",
|
||||
name: "Matte Black Lamp",
|
||||
price: "$195",
|
||||
rating: 5,
|
||||
reviewCount: "18",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-sitting-chair_52683-88938.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
brand: "Novera",
|
||||
name: "Marble Coffee Table",
|
||||
price: "$1,200",
|
||||
rating: 5,
|
||||
reviewCount: "9",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-with-tablet-couch_23-2149403360.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
brand: "Novera",
|
||||
name: "Hand-Woven Rug",
|
||||
price: "$450",
|
||||
rating: 5,
|
||||
reviewCount: "32",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/luxury-modern-living-room-with-elegant-decoration-generated-by-ai_188544-21535.jpg",
|
||||
},
|
||||
{ id: "1", brand: "Novera", name: "Organic Ceramic Vase", price: "$120", rating: 5, reviewCount: "24", imageSrc: "http://img.b2bpic.net/free-photo/close-up-minimalist-fireplace-sofa_23-2148238607.jpg" },
|
||||
{ id: "2", brand: "Novera", name: "Walnut Accent Chair", price: "$850", rating: 5, reviewCount: "12", imageSrc: "http://img.b2bpic.net/free-photo/3d-room-decor-with-furniture-minimalist-beige-tones_23-2150767045.jpg" },
|
||||
{ id: "3", brand: "Novera", name: "Linen Throw Blanket", price: "$290", rating: 5, reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/3d-contemporary-living-room-interior-modern-furniture_1048-17766.jpg" },
|
||||
{ id: "4", brand: "Novera", name: "Matte Black Lamp", price: "$195", rating: 5, reviewCount: "18", imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-sitting-chair_52683-88938.jpg" },
|
||||
{ id: "5", brand: "Novera", name: "Marble Coffee Table", price: "$1,200", rating: 5, reviewCount: "9", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-with-tablet-couch_23-2149403360.jpg" },
|
||||
{ id: "6", brand: "Novera", name: "Hand-Woven Rug", price: "$450", rating: 5, reviewCount: "32", imageSrc: "http://img.b2bpic.net/free-photo/luxury-modern-living-room-with-elegant-decoration-generated-by-ai_188544-21535.jpg" }
|
||||
]}
|
||||
title="Featured Collections"
|
||||
description="Curated pieces for the refined modern home."
|
||||
@@ -202,23 +103,12 @@ export default function LandingPage() {
|
||||
<div id="inspiration" data-section="inspiration">
|
||||
<FeatureHoverPattern
|
||||
textboxLayout="split"
|
||||
animationType="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Organic Textures",
|
||||
description: "Natural materials for calm living.",
|
||||
icon: Leaf,
|
||||
},
|
||||
{
|
||||
title: "Warm Minimalism",
|
||||
description: "Sophisticated spaces that breathe.",
|
||||
icon: Sun,
|
||||
},
|
||||
{
|
||||
title: "Timeless Design",
|
||||
description: "Spaces crafted to last forever.",
|
||||
icon: Clock,
|
||||
},
|
||||
{ title: "Organic Textures", description: "Natural materials for calm living.", icon: Leaf },
|
||||
{ title: "Warm Minimalism", description: "Sophisticated spaces that breathe.", icon: Sun },
|
||||
{ title: "Timeless Design", description: "Spaces crafted to last forever.", icon: Clock }
|
||||
]}
|
||||
title="Interior Inspiration"
|
||||
description="Explore our curated design aesthetic."
|
||||
@@ -229,15 +119,7 @@ export default function LandingPage() {
|
||||
<SocialProofOne
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"Instagram",
|
||||
"TikTok",
|
||||
"Pinterest",
|
||||
"ArchDigest",
|
||||
"VogueLiving",
|
||||
"ElleDecor",
|
||||
"AD Magazine",
|
||||
]}
|
||||
names={["Instagram", "TikTok", "Pinterest", "ArchDigest", "VogueLiving", "ElleDecor", "AD Magazine"]}
|
||||
title="Follow Our Journey"
|
||||
description="Daily home inspiration on our platforms."
|
||||
/>
|
||||
@@ -247,48 +129,14 @@ export default function LandingPage() {
|
||||
<TestimonialCardOne
|
||||
textboxLayout="split"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah J.",
|
||||
role: "Architect",
|
||||
company: "Studio Novera",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-blonde-curly-lady-trendy-silk-black-home-suit-smiles-widely-looks-into-camera-holds-l_197531-33672.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Mark D.",
|
||||
role: "Collector",
|
||||
company: "Luxury Home",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-holding-smartphone_23-2150226076.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily R.",
|
||||
role: "Designer",
|
||||
company: "Creative Spaces",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-fashion-designer-s-office_23-2151273084.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "James L.",
|
||||
role: "CEO",
|
||||
company: "Modern Living",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-happy-student-girl-with-dark-curly-hair-sitting-stairs-university-with-textbooks-knees-cup-coffee-go-hand-joyfully-looking-friend_574295-3958.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Chloe T.",
|
||||
role: "Stylist",
|
||||
company: "Decor Daily",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-holding-tablet_23-2149927578.jpg",
|
||||
},
|
||||
{ id: "1", name: "Sarah J.", role: "Architect", company: "Studio Novera", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/cheerful-blonde-curly-lady-trendy-silk-black-home-suit-smiles-widely-looks-into-camera-holds-l_197531-33672.jpg" },
|
||||
{ id: "2", name: "Mark D.", role: "Collector", company: "Luxury Home", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-holding-smartphone_23-2150226076.jpg" },
|
||||
{ id: "3", name: "Emily R.", role: "Designer", company: "Creative Spaces", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/still-life-fashion-designer-s-office_23-2151273084.jpg" },
|
||||
{ id: "4", name: "James L.", role: "CEO", company: "Modern Living", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-happy-student-girl-with-dark-curly-hair-sitting-stairs-university-with-textbooks-knees-cup-coffee-go-hand-joyfully-looking-friend_574295-3958.jpg" },
|
||||
{ id: "5", name: "Chloe T.", role: "Stylist", company: "Decor Daily", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-holding-tablet_23-2149927578.jpg" }
|
||||
]}
|
||||
title="Client Stories"
|
||||
description="Hear what our sophisticated community says."
|
||||
@@ -298,71 +146,20 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Inquire"
|
||||
title="Let's Design Together"
|
||||
description="Have a project in mind? Reach out to our design team."
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Us",
|
||||
href: "mailto:hello@noveraliving.com",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Contact Us", href: "mailto:hello@noveraliving.com" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Collections",
|
||||
href: "#collections",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Socials",
|
||||
items: [
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "https://www.instagram.com/thenoveraliving/",
|
||||
},
|
||||
{
|
||||
label: "TikTok",
|
||||
href: "https://www.tiktok.com/@animeversex6",
|
||||
},
|
||||
{
|
||||
label: "Pinterest",
|
||||
href: "https://www.pinterest.com/thenoveraliving/",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Company", items: [{ label: "About Us", href: "#about" }, { label: "Collections", href: "#collections" }, { label: "Contact", href: "#contact" }] },
|
||||
{ title: "Socials", items: [{ label: "Instagram", href: "https://www.instagram.com/thenoveraliving/" }, { label: "TikTok", href: "https://www.tiktok.com/@animeversex6" }, { label: "Pinterest", href: "https://www.pinterest.com/thenoveraliving/" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }
|
||||
]}
|
||||
logoText="Novera Living"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user