Merge version_3 into main #4

Merged
bender merged 2 commits from version_3 into main 2026-03-27 16:53:52 +00:00
2 changed files with 54 additions and 4 deletions

45
src/app/chat/page.tsx Normal file
View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="medium"
sizing="large"
background="none"
cardStyle="glass-elevated"
primaryButtonStyle="shadow"
secondaryButtonStyle="glass"
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Features", id: "/features" },
{ name: "Pricing", id: "/pricing" },
]}
brandName="Lovable"
/>
</div>
<main className="flex h-[calc(100vh-80px)] w-full overflow-hidden mt-20">
<div className="w-1/2 border-r border-border p-6 overflow-y-auto">
<h1 className="text-2xl font-bold mb-4">Live Chat</h1>
<div className="bg-card p-4 rounded-lg">Chat messages would go here...</div>
</div>
<div className="w-1/2 p-6 overflow-y-auto">
<h1 className="text-2xl font-bold mb-4">Live Preview</h1>
<div className="bg-card p-4 rounded-lg">Live application preview would render here...</div>
</div>
</main>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="text-shift"
@@ -47,7 +52,7 @@ export default function LandingPage() {
description="AI-powered web development that combines stunning design with production-ready code. Ship faster without sacrificing quality or your creative vision."
buttons={[
{
text: "Start Building Free", href: "#"},
text: "Start Building Free", onClick: handleAuthAction},
]}
carouselItems={[
{
@@ -133,7 +138,7 @@ export default function LandingPage() {
{
id: "p1", badge: "Free", price: "$0", subtitle: "For personal side projects", buttons: [
{
text: "Get Started", href: "#"},
text: "Get Started", onClick: handleAuthAction},
],
features: [
"Limited generations", "Community support", "Public repos"],
@@ -141,7 +146,7 @@ export default function LandingPage() {
{
id: "p2", badge: "Pro", price: "$49/mo", subtitle: "For rapid builders", buttons: [
{
text: "Go Pro", href: "#"},
text: "Go Pro", onClick: handleAuthAction},
],
features: [
"Unlimited generations", "Priority AI model", "Commercial license", "GitHub sync"],
@@ -149,7 +154,7 @@ export default function LandingPage() {
{
id: "p3", badge: "Team", price: "$199/mo", subtitle: "For scaling teams", buttons: [
{
text: "Contact Sales", href: "#"},
text: "Contact Sales", onClick: handleAuthAction},
],
features: [
"Team collaboration", "Custom integrations", "SSO & security", "Priority support"],