Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-05-02 04:19:22 +00:00
4 changed files with 75 additions and 368 deletions

View File

@@ -7,7 +7,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import SplitAbout from '@/components/sections/about/SplitAbout';
import TeamCardOne from '@/components/sections/team/TeamCardOne';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
@@ -25,24 +25,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Products",
id: "/products",
},
{
name: "About Us",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "About Us", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="WorkNest Interiors"
button={{ text: "Contact Now", href: "/contact" }}
/>
</div>
@@ -53,18 +42,9 @@ export default function LandingPage() {
title="Born from back pain, built for work."
description="WorkNest began in a physiotherapy clinic. Our founders spent ₹80,000 on medical bills before realizing the market lacked affordable, high-quality ergonomic options for Indian professionals."
bulletPoints={[
{
title: "Founding Vision",
description: "Make ergonomic workspaces accessible to everyone.",
},
{
title: "Growth",
description: "Operating across 6 cities with 127 orders completed.",
},
{
title: "Customer First",
description: "97.7% fulfilment success rate to date.",
},
{ title: "Founding Vision", description: "Make ergonomic workspaces accessible to everyone." },
{ title: "Growth", description: "Operating across 6 cities with 127 orders completed." },
{ title: "Customer First", description: "97.7% fulfilment success rate to date." },
]}
imageSrc="http://img.b2bpic.net/free-photo/bearded-male-eyeglasses-with-tattoo-his-arm-sits-chair-using-tablet-pc_613910-12168.jpg"
/>
@@ -79,18 +59,8 @@ export default function LandingPage() {
title="Meet the Team"
description="The minds behind your comfort."
members={[
{
id: "m1",
name: "Aarav Sharma",
role: "CEO & Founder",
imageSrc: "http://img.b2bpic.net/free-photo/businessman-solving-startup-problems-with-laptop-archived-documents-looking-annual-statistics-report-find-issue-young-analyst-reviewing-papers-executive-strategy-plan_482257-65811.jpg",
},
{
id: "m2",
name: "Priya Varma",
role: "Head of Design",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-female-work-having-video-call_23-2148902306.jpg",
},
{ id: "m1", name: "Aarav Sharma", role: "CEO & Founder", imageSrc: "http://img.b2bpic.net/free-photo/businessman-solving-startup-problems-with-laptop-archived-documents-looking-annual-statistics-report-find-issue-young-analyst-reviewing-papers-executive-strategy-plan_482257-65811.jpg" },
{ id: "m2", name: "Priya Varma", role: "Head of Design", imageSrc: "http://img.b2bpic.net/free-photo/portrait-female-work-having-video-call_23-2148902306.jpg" },
]}
/>
</div>
@@ -98,37 +68,9 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Brand",
items: [
{
label: "WorkNest Interiors",
href: "/",
},
],
},
{
title: "Navigation",
items: [
{
label: "Products",
href: "/products",
},
{
label: "About Us",
href: "/about",
},
],
},
{
title: "Get In Touch",
items: [
{
label: "info@worknest.in",
href: "mailto:info@worknest.in",
},
],
},
{ title: "Brand", items: [{ label: "WorkNest Interiors", href: "/" }] },
{ title: "Navigation", items: [{ label: "Products", href: "/products" }, { label: "About Us", href: "/about" }] },
{ title: "Get In Touch", items: [{ label: "info@worknest.in", href: "mailto:info@worknest.in" }] },
]}
bottomLeftText="© 2024 WorkNest Interiors. All rights reserved."
bottomRightText="Bangalore, India"

View File

@@ -7,7 +7,7 @@ import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
@@ -25,33 +25,20 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Products",
id: "/products",
},
{
name: "About Us",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "About Us", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="WorkNest Interiors"
button={{ text: "Contact Now", href: "/contact" }}
/>
</div>
<div id="contact-section" data-section="contact-section">
<ContactCenter
useInvertedBackground={true}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Contact Us"
title="Get in Touch"
description="Have questions about your workspace? Reach out to info@worknest.in or follow our journey on Instagram."
@@ -61,9 +48,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Visit Us"
title="Our Showroom"
description="Come experience our products in person."
@@ -75,37 +60,9 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Brand",
items: [
{
label: "WorkNest Interiors",
href: "/",
},
],
},
{
title: "Navigation",
items: [
{
label: "Products",
href: "/products",
},
{
label: "About Us",
href: "/about",
},
],
},
{
title: "Get In Touch",
items: [
{
label: "info@worknest.in",
href: "mailto:info@worknest.in",
},
],
},
{ title: "Brand", items: [{ label: "WorkNest Interiors", href: "/" }] },
{ title: "Navigation", items: [{ label: "Products", href: "/products" }, { label: "About Us", href: "/about" }] },
{ title: "Get In Touch", items: [{ label: "info@worknest.in", href: "mailto:info@worknest.in" }] },
]}
bottomLeftText="© 2024 WorkNest Interiors. All rights reserved."
bottomRightText="Bangalore, India"

View File

@@ -29,92 +29,35 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Products",
id: "/products",
},
{
name: "About Us",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "About Us", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="WorkNest Interiors"
button={{ text: "Contact Now", href: "/contact" }}
/>
</div>
<div id="hero" data-section="hero">
<HeroCentered
background={{
variant: "radial-gradient",
}}
background={{ variant: "radial-gradient" }}
title="Workspaces That Work for Your Back"
description="Premium ergonomic furniture designed for the way India works. Built by those who felt the strain first-hand."
avatars={[
{
src: "http://img.b2bpic.net/free-photo/close-up-bookshelf-water-dispenser-business-office-empty-desk-with-decorations-watercooler-startup-space-shelves-with-minimal-decor-decorative-plants-refreshment_482257-27791.jpg",
alt: "Workstation setup",
},
{
src: "http://img.b2bpic.net/free-photo/woman-working-from-home_23-2148916095.jpg",
alt: "Workstation setup",
},
{
src: "http://img.b2bpic.net/free-photo/working-from-home-ergonomic-workstation_23-2149132322.jpg",
alt: "Workstation setup",
},
{
src: "http://img.b2bpic.net/free-photo/view-modern-futuristic-work-space-with-furniture_23-2151797641.jpg",
alt: "Workstation setup",
},
{
src: "http://img.b2bpic.net/free-photo/working-from-home-ergonomic-workstation_23-2149132339.jpg",
alt: "Working from home in ergonomic workstation",
},
]}
buttons={[
{
text: "Explore Products",
href: "/products",
},
{
text: "Our Story",
href: "/about",
},
{ src: "http://img.b2bpic.net/free-photo/close-up-bookshelf-water-dispenser-business-office-empty-desk-with-decorations-watercooler-startup-space-shelves-with-minimal-decor-decorative-plants-refreshment_482257-27791.jpg", alt: "Workstation setup" },
{ src: "http://img.b2bpic.net/free-photo/woman-working-from-home_23-2148916095.jpg", alt: "Workstation setup" },
{ src: "http://img.b2bpic.net/free-photo/working-from-home-ergonomic-workstation_23-2149132322.jpg", alt: "Workstation setup" },
{ src: "http://img.b2bpic.net/free-photo/view-modern-futuristic-work-space-with-furniture_23-2151797641.jpg", alt: "Workstation setup" },
{ src: "http://img.b2bpic.net/free-photo/working-from-home-ergonomic-workstation_23-2149132339.jpg", alt: "Working from home in ergonomic workstation" },
]}
buttons={[{ text: "Explore Products", href: "/products" }, { text: "Our Story", href: "/about" }]}
marqueeItems={[
{
type: "text-icon",
text: "Designed for Comfort",
icon: Star,
},
{
type: "text-icon",
text: "Fast Delivery Across India",
icon: Truck,
},
{
type: "text-icon",
text: "100% Satisfaction Guarantee",
icon: CheckCircle,
},
{
type: "text-icon",
text: "Professional Grade Materials",
icon: ShieldCheck,
},
{
type: "text-icon",
text: "Sustainable Design",
icon: Leaf,
},
{ type: "text-icon", text: "Designed for Comfort", icon: Star },
{ type: "text-icon", text: "Fast Delivery Across India", icon: Truck },
{ type: "text-icon", text: "100% Satisfaction Guarantee", icon: CheckCircle },
{ type: "text-icon", text: "Professional Grade Materials", icon: ShieldCheck },
{ type: "text-icon", text: "Sustainable Design", icon: Leaf },
]}
/>
</div>
@@ -124,24 +67,9 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
features={[
{
title: "Ergonomic Seating",
description: "Mesh chairs designed for 8-hour workdays without pain.",
imageSrc: "http://img.b2bpic.net/free-photo/black-red-round-chairs-close-up_250224-172.jpg",
imageAlt: "Chair",
},
{
title: "Standing Desks",
description: "Height-adjustable desks engineered to reduce fatigue.",
imageSrc: "http://img.b2bpic.net/free-photo/working-from-home-ergonomic-workstation_23-2149132309.jpg",
imageAlt: "Desk",
},
{
title: "Desk Accessories",
description: "Monitor risers and cable management for total focus.",
imageSrc: "http://img.b2bpic.net/free-photo/keyboard-surrounded-by-colorful-stationery_23-2148319726.jpg",
imageAlt: "Accessories",
},
{ title: "Ergonomic Seating", description: "Mesh chairs designed for 8-hour workdays without pain.", imageSrc: "http://img.b2bpic.net/free-photo/black-red-round-chairs-close-up_250224-172.jpg", imageAlt: "Chair" },
{ title: "Standing Desks", description: "Height-adjustable desks engineered to reduce fatigue.", imageSrc: "http://img.b2bpic.net/free-photo/working-from-home-ergonomic-workstation_23-2149132309.jpg", imageAlt: "Desk" },
{ title: "Desk Accessories", description: "Monitor risers and cable management for total focus.", imageSrc: "http://img.b2bpic.net/free-photo/keyboard-surrounded-by-colorful-stationery_23-2148319726.jpg", imageAlt: "Accessories" },
]}
title="Ergonomic Solutions Built for India"
description="We deliver superior comfort through targeted workstation design."
@@ -154,27 +82,9 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={true}
metrics={[
{
id: "1",
value: "₹31L+",
title: "Revenue Generated",
description: "JanSep 2024 success.",
imageSrc: "http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797749.jpg",
},
{
id: "2",
value: "6",
title: "Cities Served",
description: "Across major metros.",
imageSrc: "http://img.b2bpic.net/free-photo/parallel-sections-light-diagonal-minimal-kitchen_169016-69155.jpg",
},
{
id: "3",
value: "97.7%",
title: "Fulfilment Rate",
description: "Zero-cancellation focus.",
imageSrc: "http://img.b2bpic.net/free-photo/view-modern-futuristic-work-space-with-furniture_23-2151797693.jpg",
},
{ id: "1", value: "₹31L+", title: "Revenue Generated", description: "JanSep 2024 success.", imageSrc: "http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797749.jpg" },
{ id: "2", value: "6", title: "Cities Served", description: "Across major metros.", imageSrc: "http://img.b2bpic.net/free-photo/parallel-sections-light-diagonal-minimal-kitchen_169016-69155.jpg" },
{ id: "3", value: "97.7%", title: "Fulfilment Rate", description: "Zero-cancellation focus.", imageSrc: "http://img.b2bpic.net/free-photo/view-modern-futuristic-work-space-with-furniture_23-2151797693.jpg" },
]}
title="Real Numbers, Real Impact"
description="Verified data from January to September 2024."
@@ -186,6 +96,9 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
blogs={[]}
title="Latest Insights"
description="Tips for better office health."
/>
</div>
@@ -195,43 +108,18 @@ export default function LandingPage() {
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
testimonials={[]}
title="Client Success"
description="What they say about us."
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Brand",
items: [
{
label: "WorkNest Interiors",
href: "/",
},
],
},
{
title: "Navigation",
items: [
{
label: "Products",
href: "/products",
},
{
label: "About Us",
href: "/about",
},
],
},
{
title: "Get In Touch",
items: [
{
label: "info@worknest.in",
href: "mailto:info@worknest.in",
},
],
},
{ title: "Brand", items: [{ label: "WorkNest Interiors", href: "/" }] },
{ title: "Navigation", items: [{ label: "Products", href: "/products" }, { label: "About Us", href: "/about" }] },
{ title: "Get In Touch", items: [{ label: "info@worknest.in", href: "mailto:info@worknest.in" }] },
]}
bottomLeftText="© 2024 WorkNest Interiors. All rights reserved."
bottomRightText="Bangalore, India"

View File

@@ -7,7 +7,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
export default function LandingPage() {
export default function ProductsPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
@@ -25,24 +25,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Products",
id: "/products",
},
{
name: "About Us",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "About Us", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="WorkNest Interiors"
button={{ text: "Contact Now", href: "/contact" }}
/>
</div>
@@ -53,42 +42,12 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
{
id: "p1",
name: "Ergo Desk Pro",
price: "₹10,91,500 Revenue",
imageSrc: "http://img.b2bpic.net/free-photo/working-from-home-ergonomic-workstation_23-2149132302.jpg",
},
{
id: "p2",
name: "Air Mesh Chair",
price: "67 Units Sold",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-office-chair-indoors_23-2151108732.jpg",
},
{
id: "p3",
name: "Monitor Riser",
price: "144 Units Sold",
imageSrc: "http://img.b2bpic.net/free-photo/minimal-style-device-screen_23-2151913288.jpg",
},
{
id: "p4",
name: "Cable Organizer",
price: "Essential",
imageSrc: "http://img.b2bpic.net/free-photo/working-place-designer-closeup_93675-131355.jpg",
},
{
id: "p5",
name: "StandDesk Elite",
price: "Premium",
imageSrc: "http://img.b2bpic.net/free-photo/working-from-home-ergonomic-workstation_23-2149132314.jpg",
},
{
id: "p6",
name: "Lumbar Support",
price: "Seating",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-office-chair-indoors_23-2151108704.jpg",
},
{ id: "p1", name: "Ergo Desk Pro", price: "₹10,91,500 Revenue", imageSrc: "http://img.b2bpic.net/free-photo/working-from-home-ergonomic-workstation_23-2149132302.jpg" },
{ id: "p2", name: "Air Mesh Chair", price: "67 Units Sold", imageSrc: "http://img.b2bpic.net/free-photo/still-life-office-chair-indoors_23-2151108732.jpg" },
{ id: "p3", name: "Monitor Riser", price: "144 Units Sold", imageSrc: "http://img.b2bpic.net/free-photo/minimal-style-device-screen_23-2151913288.jpg" },
{ id: "p4", name: "Cable Organizer", price: "Essential", imageSrc: "http://img.b2bpic.net/free-photo/working-place-designer-closeup_93675-131355.jpg" },
{ id: "p5", name: "StandDesk Elite", price: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/working-from-home-ergonomic-workstation_23-2149132314.jpg" },
{ id: "p6", name: "Lumbar Support", price: "Seating", imageSrc: "http://img.b2bpic.net/free-photo/still-life-office-chair-indoors_23-2151108704.jpg" },
]}
title="Ergonomic Catalogue"
description="Premium selections for the modern workspace."
@@ -104,20 +63,9 @@ export default function LandingPage() {
title="Best Sellers"
description="Our most trusted ergonomic gear."
products={[
{
id: "feat-1",
name: "ProMesh Chair",
price: "₹15,000",
variant: "Black",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-office-chair-indoors_23-2151108725.jpg",
},
{
id: "feat-2",
name: "Minimalist Desk",
price: "₹22,000",
variant: "White Oak",
imageSrc: "http://img.b2bpic.net/free-photo/modern-small-chair-with-blue-cushion-it-room_181624-44108.jpg",
},
{ id: "feat-1", name: "ProMesh Chair", price: "₹15,000", variant: "Black", imageSrc: "http://img.b2bpic.net/free-photo/still-life-office-chair-indoors_23-2151108725.jpg" },
{ id: "feat-2", name: "Minimalist Desk", price: "₹22,000", variant: "White Oak", imageSrc: "http://img.b2bpic.net/free-photo/modern-small-chair-with-blue-cushion-it-room_181624-44108.jpg" },
{ id: "feat-3", name: "Task Lamp", price: "₹4,000", variant: "Matte", imageSrc: "http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797749.jpg" },
]}
/>
</div>
@@ -125,37 +73,9 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Brand",
items: [
{
label: "WorkNest Interiors",
href: "/",
},
],
},
{
title: "Navigation",
items: [
{
label: "Products",
href: "/products",
},
{
label: "About Us",
href: "/about",
},
],
},
{
title: "Get In Touch",
items: [
{
label: "info@worknest.in",
href: "mailto:info@worknest.in",
},
],
},
{ title: "Brand", items: [{ label: "WorkNest Interiors", href: "/" }] },
{ title: "Navigation", items: [{ label: "Products", href: "/products" }, { label: "About Us", href: "/about" }] },
{ title: "Get In Touch", items: [{ label: "info@worknest.in", href: "mailto:info@worknest.in" }] },
]}
bottomLeftText="© 2024 WorkNest Interiors. All rights reserved."
bottomRightText="Bangalore, India"