Merge version_1 into main #2
195
src/app/page.tsx
195
src/app/page.tsx
@@ -30,85 +30,38 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Catalog",
|
||||
id: "catalog",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Catalog", id: "catalog" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="PVC Tech 3D"
|
||||
button={{ text: "Get Started" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplit
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
variant: "gradient-bars"}}
|
||||
title="Configurate Your Windows in 3D"
|
||||
description="Design the perfect windows for your home. Choose from high-quality PVC profiles, glass, and handles with our interactive 3D tool."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/mobile-girl_1098-15731.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/mobile-girl_1098-15731.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/real-estate-desk-with-keys_23-2147653337.jpg",
|
||||
alt: "Architect",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/electrician-is-mounting-electric-sockets-white-wall-indoors_169016-17657.jpg",
|
||||
alt: "Designer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/sensual-serious-woman-window_23-2148079398.jpg",
|
||||
alt: "Engineer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/asian-woman-using-alcohol-spray-tissue-clean-doorknob-before-open-door-protect-coronavirus-female-clean-surface-hygiene-when-social-distancing-stay-home-self-quarantine-time_7861-2497.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/vertical-shot-glass-ceiling-modern-building-seoul-south-korea_181624-3417.jpg",
|
||||
alt: "Partner",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/real-estate-desk-with-keys_23-2147653337.jpg", alt: "Architect" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/electrician-is-mounting-electric-sockets-white-wall-indoors_169016-17657.jpg", alt: "Designer" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/sensual-serious-woman-window_23-2148079398.jpg", alt: "Engineer" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/asian-woman-using-alcohol-spray-tissue-clean-doorknob-before-open-door-protect-coronavirus-female-clean-surface-hygiene-when-social-distancing-stay-home-self-quarantine-time_7861-2497.jpg", alt: "Customer" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/vertical-shot-glass-ceiling-modern-building-seoul-south-korea_181624-3417.jpg", alt: "Partner" },
|
||||
]}
|
||||
avatarText="Trusted by 5,000+ professionals"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Thermal Efficient",
|
||||
icon: Gauge,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Sound Proof",
|
||||
icon: Star,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "UV Protection",
|
||||
icon: Sun,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Easy Install",
|
||||
icon: Wrench,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Custom Design",
|
||||
icon: Palette,
|
||||
},
|
||||
{ type: "text-icon", text: "Thermal Efficient", icon: Gauge },
|
||||
{ type: "text-icon", text: "Sound Proof", icon: Star },
|
||||
{ type: "text-icon", text: "UV Protection", icon: Sun },
|
||||
{ type: "text-icon", text: "Easy Install", icon: Wrench },
|
||||
{ type: "text-icon", text: "Custom Design", icon: Palette },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -132,21 +85,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
icon: Layers,
|
||||
title: "Interactive 3D Configurator",
|
||||
description: "Drag and drop custom PVC frames and glass units into your room.",
|
||||
},
|
||||
{
|
||||
icon: Maximize,
|
||||
title: "Precision Measurements",
|
||||
description: "Tools to ensure every window fits your architectural design perfectly.",
|
||||
},
|
||||
{
|
||||
icon: Sun,
|
||||
title: "Thermal Analysis",
|
||||
description: "Preview how different profiles affect thermal performance and light transmission.",
|
||||
},
|
||||
{ icon: Layers, title: "Interactive 3D Configurator", description: "Drag and drop custom PVC frames and glass units into your room." },
|
||||
{ icon: Maximize, title: "Precision Measurements", description: "Tools to ensure every window fits your architectural design perfectly." },
|
||||
{ icon: Sun, title: "Thermal Analysis", description: "Preview how different profiles affect thermal performance and light transmission." },
|
||||
]}
|
||||
title="Advanced Features"
|
||||
description="Powerful tools for professional results."
|
||||
@@ -160,33 +101,9 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
brand: "TechPVC",
|
||||
name: "Premium Thermal Profile",
|
||||
price: "$120",
|
||||
rating: 5,
|
||||
reviewCount: "120",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/asian-woman-using-alcohol-spray-tissue-clean-doorknob-before-open-door-protect-coronavirus-female-clean-surface-hygiene-when-social-distancing-stay-home-self-quarantine-time_7861-2497.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
brand: "GlassTech",
|
||||
name: "Double Glazed Unit",
|
||||
price: "$85",
|
||||
rating: 5,
|
||||
reviewCount: "95",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-glass-ceiling-modern-building-seoul-south-korea_181624-3417.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
brand: "DesignStyle",
|
||||
name: "Chrome Custom Handle",
|
||||
price: "$45",
|
||||
rating: 4,
|
||||
reviewCount: "40",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-father-with-daughter-standing-near-open-balcony-smiling_74855-9994.jpg",
|
||||
},
|
||||
{ id: "p1", brand: "TechPVC", name: "Premium Thermal Profile", price: "$120", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/asian-woman-using-alcohol-spray-tissue-clean-doorknob-before-open-door-protect-coronavirus-female-clean-surface-hygiene-when-social-distancing-stay-home-self-quarantine-time_7861-2497.jpg" },
|
||||
{ id: "p2", brand: "GlassTech", name: "Double Glazed Unit", price: "$85", rating: 5, reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-glass-ceiling-modern-building-seoul-south-korea_181624-3417.jpg" },
|
||||
{ id: "p3", brand: "DesignStyle", name: "Chrome Custom Handle", price: "$45", rating: 4, reviewCount: "40", imageSrc: "http://img.b2bpic.net/free-photo/happy-father-with-daughter-standing-near-open-balcony-smiling_74855-9994.jpg" },
|
||||
]}
|
||||
title="Window & Door Catalog"
|
||||
description="Select from our premium range of PVC profiles and hardware."
|
||||
@@ -199,33 +116,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "10k+",
|
||||
title: "Windows Installed",
|
||||
items: [
|
||||
"Certified installers",
|
||||
"Warranty backed",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "5k+",
|
||||
title: "Happy Clients",
|
||||
items: [
|
||||
"Real home photos",
|
||||
"High satisfaction",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "99%",
|
||||
title: "Heat Retention",
|
||||
items: [
|
||||
"Advanced profiles",
|
||||
"Energy efficient",
|
||||
],
|
||||
},
|
||||
{ id: "m1", value: "10k+", title: "Windows Installed", items: ["Certified installers", "Warranty backed"] },
|
||||
{ id: "m2", value: "5k+", title: "Happy Clients", items: ["Real home photos", "High satisfaction"] },
|
||||
{ id: "m3", value: "99%", title: "Heat Retention", items: ["Advanced profiles", "Energy efficient"] },
|
||||
]}
|
||||
title="Global Success"
|
||||
description="Trusted by home owners and architects everywhere."
|
||||
@@ -235,9 +128,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
tag="Get in touch"
|
||||
title="Need Help? Contact Us"
|
||||
description="Our experts are ready to help with your window design. Call us at +996999260025."
|
||||
@@ -246,38 +137,14 @@ export default function LandingPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/mobile-girl_1098-15731.jpg?_wi=2"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/mobile-girl_1098-15731.jpg"
|
||||
columns={[
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "Help Center",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Contact us",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Privacy",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Support", items: [{ label: "Help Center", href: "#" }, { label: "Contact us", href: "#" }] },
|
||||
{ title: "Company", items: [{ label: "About", href: "#" }, { label: "Privacy", href: "#" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user