23 Commits

Author SHA1 Message Date
9dfb648361 Update src/app/visit/page.tsx 2026-04-14 02:45:59 +00:00
1f9b4bb065 Update src/app/vendors/page.tsx 2026-04-14 02:45:59 +00:00
ea840a7c9d Update src/app/services/page.tsx 2026-04-14 02:45:58 +00:00
feff31ac4e Update src/app/page.tsx 2026-04-14 02:45:58 +00:00
7f5e387a61 Update src/app/contact/page.tsx 2026-04-14 02:45:58 +00:00
678726a33d Update src/app/classes/page.tsx 2026-04-14 02:45:57 +00:00
cccccde439 Update src/app/about/page.tsx 2026-04-14 02:45:57 +00:00
1e69e7bba5 Merge version_11 into main
Merge version_11 into main
2026-04-14 02:43:27 +00:00
b9d6032837 Update src/app/visit/page.tsx 2026-04-14 02:43:24 +00:00
45dcc2f53e Update src/app/vendors/page.tsx 2026-04-14 02:43:24 +00:00
87493fa766 Update src/app/services/page.tsx 2026-04-14 02:43:23 +00:00
4323e58d7b Update src/app/page.tsx 2026-04-14 02:43:23 +00:00
4779957f2c Update src/app/contact/page.tsx 2026-04-14 02:43:22 +00:00
3acb09af9c Update src/app/classes/page.tsx 2026-04-14 02:43:22 +00:00
9efaff6402 Update src/app/about/page.tsx 2026-04-14 02:43:21 +00:00
8d8daf5331 Merge version_10 into main
Merge version_10 into main
2026-04-14 02:41:55 +00:00
b8f164fe24 Update src/app/vendors/page.tsx 2026-04-14 02:41:52 +00:00
bf6b90074c Update src/app/services/page.tsx 2026-04-14 02:41:51 +00:00
0e39eb53c8 Update src/app/page.tsx 2026-04-14 02:41:51 +00:00
44fc451504 Update src/app/contact/page.tsx 2026-04-14 02:41:50 +00:00
87d0c0f683 Update src/app/classes/page.tsx 2026-04-14 02:41:50 +00:00
dfdcd55984 Update src/app/about/page.tsx 2026-04-14 02:41:50 +00:00
9e69cf8e0a Merge version_9 into main
Merge version_9 into main
2026-04-14 02:30:26 +00:00
7 changed files with 91 additions and 21 deletions

View File

@@ -6,9 +6,10 @@ import FooterBase from '@/components/sections/footer/FooterBase';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
import { Sparkles } from 'lucide-react';
import { useState } from 'react';
export default function LandingPage() {
const [isChatOpen, setIsChatOpen] = useState(false);
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
@@ -33,8 +34,17 @@ export default function LandingPage() {
{ name: "Visit", id: "/visit" },
]}
brandName="gilded nest"
button={{ text: "Gilded Nest AI", onClick: () => alert("Connecting to Gilded Nest AI agent..."), href: "#" }}
button={{ text: "Gilded Nest AI Agent", onClick: () => setIsChatOpen(true) }}
/>
{isChatOpen && (
<div className="fixed bottom-20 right-8 z-50 w-80 h-96 bg-white border border-gray-200 rounded-2xl shadow-xl flex flex-col p-4">
<div className="flex justify-between items-center mb-4">
<h3 className="font-bold">AI Assistant</h3>
<button onClick={() => setIsChatOpen(false)}>×</button>
</div>
<div className="flex-1 overflow-y-auto mb-4 border-t pt-2">How can I help you today?</div>
</div>
)}
</div>
<div id="about" data-section="about">
@@ -76,4 +86,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -6,9 +6,10 @@ import FooterBase from '@/components/sections/footer/FooterBase';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import { Sparkles } from 'lucide-react';
import { useState } from 'react';
export default function LandingPage() {
const [isChatOpen, setIsChatOpen] = useState(false);
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
@@ -33,8 +34,17 @@ export default function LandingPage() {
{ name: "Visit", id: "/visit" },
]}
brandName="gilded nest"
button={{ text: "Gilded Nest AI", onClick: () => alert("Connecting to Gilded Nest AI agent..."), href: "#" }}
button={{ text: "Gilded Nest AI Agent", onClick: () => setIsChatOpen(true) }}
/>
{isChatOpen && (
<div className="fixed bottom-20 right-8 z-50 w-80 h-96 bg-white border border-gray-200 rounded-2xl shadow-xl flex flex-col p-4">
<div className="flex justify-between items-center mb-4">
<h3 className="font-bold">AI Assistant</h3>
<button onClick={() => setIsChatOpen(false)}>×</button>
</div>
<div className="flex-1 overflow-y-auto mb-4 border-t pt-2">How can I help you today?</div>
</div>
)}
</div>
<div id="metric" data-section="metric">
@@ -79,4 +89,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -5,9 +5,10 @@ import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Sparkles } from 'lucide-react';
import { useState } from 'react';
export default function ContactPage() {
const [isChatOpen, setIsChatOpen] = useState(false);
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
@@ -32,8 +33,17 @@ export default function ContactPage() {
{ name: "Contact", id: "/contact" },
]}
brandName="gilded nest"
button={{ text: "Gilded Nest AI", onClick: () => alert("Connecting to Gilded Nest AI agent..."), href: "#" }}
button={{ text: "Gilded Nest AI Agent", onClick: () => setIsChatOpen(true) }}
/>
{isChatOpen && (
<div className="fixed bottom-20 right-8 z-50 w-80 h-96 bg-white border border-gray-200 rounded-2xl shadow-xl flex flex-col p-4">
<div className="flex justify-between items-center mb-4">
<h3 className="font-bold">AI Assistant</h3>
<button onClick={() => setIsChatOpen(false)}>×</button>
</div>
<div className="flex-1 overflow-y-auto mb-4 border-t pt-2">How can I help you today?</div>
</div>
)}
<div id="contact" data-section="contact" className="py-20">
<ContactSplit
@@ -56,4 +66,4 @@ export default function ContactPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -10,9 +10,10 @@ import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import { Sparkles } from 'lucide-react';
import { useState } from 'react';
export default function LandingPage() {
const [isChatOpen, setIsChatOpen] = useState(false);
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
@@ -38,8 +39,17 @@ export default function LandingPage() {
{ name: "Contact", id: "/contact" },
]}
brandName="gilded nest"
button={{ text: "Gilded Nest AI", onClick: () => alert("Connecting to Gilded Nest AI agent..."), href: "#" }}
button={{ text: "Gilded Nest AI Agent", onClick: () => setIsChatOpen(true) }}
/>
{isChatOpen && (
<div className="fixed bottom-20 right-8 z-50 w-80 h-96 bg-white border border-gray-200 rounded-2xl shadow-xl flex flex-col p-4">
<div className="flex justify-between items-center mb-4">
<h3 className="font-bold">AI Assistant</h3>
<button onClick={() => setIsChatOpen(false)}>×</button>
</div>
<div className="flex-1 overflow-y-auto mb-4 border-t pt-2">How can I help you today?</div>
</div>
)}
</div>
<div id="hero" data-section="hero">
@@ -137,4 +147,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -5,9 +5,10 @@ import ReactLenis from "lenis/react";
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Sparkles } from 'lucide-react';
import { useState } from 'react';
export default function ServicesPage() {
const [isChatOpen, setIsChatOpen] = useState(false);
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
@@ -29,8 +30,17 @@ export default function ServicesPage() {
{ name: "Services", id: "/services" }
]}
brandName="gilded nest"
button={{ text: "Gilded Nest AI", onClick: () => alert("Connecting to Gilded Nest AI agent..."), href: "#" }}
button={{ text: "Gilded Nest AI Agent", onClick: () => setIsChatOpen(true) }}
/>
{isChatOpen && (
<div className="fixed bottom-20 right-8 z-50 w-80 h-96 bg-white border border-gray-200 rounded-2xl shadow-xl flex flex-col p-4">
<div className="flex justify-between items-center mb-4">
<h3 className="font-bold">AI Assistant</h3>
<button onClick={() => setIsChatOpen(false)}>×</button>
</div>
<div className="flex-1 overflow-y-auto mb-4 border-t pt-2">How can I help you today?</div>
</div>
)}
</div>
<div id="services" data-section="features">
@@ -57,4 +67,4 @@ export default function ServicesPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -6,9 +6,10 @@ import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import { Sparkles } from 'lucide-react';
import { useState } from 'react';
export default function LandingPage() {
const [isChatOpen, setIsChatOpen] = useState(false);
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
@@ -33,8 +34,17 @@ export default function LandingPage() {
{ name: "Visit", id: "/visit" },
]}
brandName="gilded nest"
button={{ text: "Gilded Nest AI", onClick: () => alert("Connecting to Gilded Nest AI agent..."), href: "#" }}
button={{ text: "Gilded Nest AI Agent", onClick: () => setIsChatOpen(true) }}
/>
{isChatOpen && (
<div className="fixed bottom-20 right-8 z-50 w-80 h-96 bg-white border border-gray-200 rounded-2xl shadow-xl flex flex-col p-4">
<div className="flex justify-between items-center mb-4">
<h3 className="font-bold">AI Assistant</h3>
<button onClick={() => setIsChatOpen(false)}>×</button>
</div>
<div className="flex-1 overflow-y-auto mb-4 border-t pt-2">How can I help you today?</div>
</div>
)}
</div>
<div id="vendor-list" data-section="vendor-list">
@@ -77,4 +87,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -6,9 +6,10 @@ import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen
import FooterBase from '@/components/sections/footer/FooterBase';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import { Sparkles } from 'lucide-react';
import { useState } from 'react';
export default function LandingPage() {
const [isChatOpen, setIsChatOpen] = useState(false);
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
@@ -33,8 +34,17 @@ export default function LandingPage() {
{ name: "Visit", id: "/visit" },
]}
brandName="gilded nest"
button={{ text: "Gilded Nest AI", onClick: () => alert("Connecting to Gilded Nest AI agent..."), href: "#" }}
button={{ text: "Gilded Nest AI Agent", onClick: () => setIsChatOpen(true) }}
/>
{isChatOpen && (
<div className="fixed bottom-20 right-8 z-50 w-80 h-96 bg-white border border-gray-200 rounded-2xl shadow-xl flex flex-col p-4">
<div className="flex justify-between items-center mb-4">
<h3 className="font-bold">AI Assistant</h3>
<button onClick={() => setIsChatOpen(false)}>×</button>
</div>
<div className="flex-1 overflow-y-auto mb-4 border-t pt-2">How can I help you today?</div>
</div>
)}
</div>
<div id="metric" data-section="metric">
@@ -75,4 +85,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}