diff --git a/src/app/chat/page.tsx b/src/app/chat/page.tsx new file mode 100644 index 0000000..c1e1cc1 --- /dev/null +++ b/src/app/chat/page.tsx @@ -0,0 +1,45 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; + +export default function ChatPage() { + return ( + + + +
+
+

Live Chat

+
Chat messages would go here...
+
+
+

Live Preview

+
Live application preview would render here...
+
+
+
+
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 2365bc2..ce506bb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,6 +11,11 @@ import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; export default function LandingPage() { + const handleAuthAction = () => { + // Implementation logic for Auth Flow + console.log("Redirecting to Authentication Flow..."); + }; + return (