From 9c1cd2c5a767b9f9f8b8d2284971e784ef9c5c90 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 10:49:00 +0000 Subject: [PATCH 1/3] Update src/app/chat/page.tsx --- src/app/chat/page.tsx | 58 ++++++++++++++++++++++++++++--------------- 1 file changed, 38 insertions(+), 20 deletions(-) diff --git a/src/app/chat/page.tsx b/src/app/chat/page.tsx index f2a51d5..0a20a7e 100644 --- a/src/app/chat/page.tsx +++ b/src/app/chat/page.tsx @@ -35,7 +35,8 @@ export default function ChatPage() { brandName="SmartAI" navItems={navItems} button={{ - text: "Start Chatting Free", href: "/chat"}} + text: "Start Chatting Free", href: "/chat" + }} /> @@ -47,12 +48,15 @@ export default function ChatPage() { tagIcon={Sparkles} tagAnimation="slide-up" background={{ - variant: "plain"}} + variant: "plain" + }} buttons={[ { - text: "Launch Chat Interface", href: "/chat"}, + text: "Launch Chat Interface", href: "/chat" + }, { - text: "View Tutorials", href: "/"}, + text: "View Tutorials", href: "/" + }, ]} buttonAnimation="slide-up" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Akaw0DhSl1B0sHkNxUHVK0qmM2/a-sleek-ai-chatbot-dashboard-interface-w-1773139345987-01f6fcb8.jpg" @@ -60,7 +64,6 @@ export default function ChatPage() { mediaAnimation="blur-reveal" imagePosition="right" fixedMediaHeight={true} - useInvertedBackground={false} className="chat-hero-section" containerClassName="chat-hero-container" textBoxClassName="chat-hero-textbox" @@ -79,11 +82,14 @@ export default function ChatPage() { tagAnimation="slide-up" accordionItems={[ { - id: "1", title: "Seamless Model Switching", content: "Switch between GPT, Claude, and Gemini models without losing your conversation history. Each model brings unique strengths—choose GPT for versatility, Claude for detailed analysis, or Gemini for creative tasks. Compare responses from different models side-by-side."}, + id: "1", title: "Seamless Model Switching", content: "Switch between GPT, Claude, and Gemini models without losing your conversation history. Each model brings unique strengths—choose GPT for versatility, Claude for detailed analysis, or Gemini for creative tasks. Compare responses from different models side-by-side." + }, { - id: "2", title: "Real-Time Streaming Responses", content: "Watch responses generate in real-time as the AI thinks and writes. Supports markdown formatting, code blocks with syntax highlighting, and formatted tables. Perfect for reading and understanding long-form content as it's created."}, + id: "2", title: "Real-Time Streaming Responses", content: "Watch responses generate in real-time as the AI thinks and writes. Supports markdown formatting, code blocks with syntax highlighting, and formatted tables. Perfect for reading and understanding long-form content as it's created." + }, { - id: "3", title: "Conversation Management", content: "Organize conversations with custom folders and tags. Search through your entire chat history. Pin important conversations. Fork discussions to explore multiple paths. Export conversations as PDF or Markdown for sharing and reference."}, + id: "3", title: "Conversation Management", content: "Organize conversations with custom folders and tags. Search through your entire chat history. Pin important conversations. Fork discussions to explore multiple paths. Export conversations as PDF or Markdown for sharing and reference." + }, ]} imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Akaw0DhSl1B0sHkNxUHVK0qmM2/a-code-assistant-tool-interface-showing--1773139345734-a3927367.png" imageAlt="Advanced Chat Features" @@ -105,37 +111,49 @@ export default function ChatPage() { { title: "Product", items: [ { - label: "Chat Interface", href: "/"}, + label: "Chat Interface", href: "/" + }, { - label: "AI Tools", href: "#tools"}, + label: "AI Tools", href: "#tools" + }, { - label: "Pricing", href: "#pricing"}, + label: "Pricing", href: "#pricing" + }, { - label: "Status", href: "/"}, + label: "Status", href: "/" + }, ], }, { title: "Company", items: [ { - label: "About Us", href: "/"}, + label: "About Us", href: "/" + }, { - label: "Blog", href: "/"}, + label: "Blog", href: "/" + }, { - label: "Careers", href: "/"}, + label: "Careers", href: "/" + }, { - label: "Contact", href: "/chat"}, + label: "Contact", href: "/chat" + }, ], }, { title: "Legal", items: [ { - label: "Privacy Policy", href: "/"}, + label: "Privacy Policy", href: "/" + }, { - label: "Terms of Service", href: "/"}, + label: "Terms of Service", href: "/" + }, { - label: "Cookie Policy", href: "/"}, + label: "Cookie Policy", href: "/" + }, { - label: "Security", href: "/"}, + label: "Security", href: "/" + }, ], }, ]} -- 2.49.1 From 0d03d390c24ad71b0f49d8199e7a71c40e3b22f4 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 10:49:00 +0000 Subject: [PATCH 2/3] Update src/app/dashboard/page.tsx --- src/app/dashboard/page.tsx | 477 +++++++------------------------------ 1 file changed, 85 insertions(+), 392 deletions(-) diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx index 779e3c5..2d2539a 100644 --- a/src/app/dashboard/page.tsx +++ b/src/app/dashboard/page.tsx @@ -5,51 +5,16 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import HeroSplit from "@/components/sections/hero/HeroSplit"; import FeatureCardTwentyOne from "@/components/sections/feature/FeatureCardTwentyOne"; -import ProductCardOne from "@/components/sections/product/ProductCardOne"; -import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven"; -import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve"; -import PricingCardEight from "@/components/sections/pricing/PricingCardEight"; -import FaqSplitText from "@/components/sections/faq/FaqSplitText"; import FooterMedia from "@/components/sections/footer/FooterMedia"; -import { Sparkles, Zap, Tool, Lightbulb, Heart, Crown, Users } from "lucide-react"; +import { Sparkles, Zap } from "lucide-react"; export default function DashboardPage() { const navItems = [ - { name: "Chat", id: "chat" }, - { name: "Tools", id: "tools" }, - { name: "Pricing", id: "pricing" }, - { name: "FAQ", id: "faq" }, - { name: "Contact", id: "contact" }, - ]; - - const footerColumns = [ - { - title: "Product", - items: [ - { label: "Chat Interface", href: "#" }, - { label: "AI Tools", href: "#tools" }, - { label: "Pricing", href: "#pricing" }, - { label: "Status", href: "#" }, - ], - }, - { - title: "Company", - items: [ - { label: "About Us", href: "#" }, - { label: "Blog", href: "#" }, - { label: "Careers", href: "#" }, - { label: "Contact", href: "#contact" }, - ], - }, - { - title: "Legal", - items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms of Service", href: "#" }, - { label: "Cookie Policy", href: "#" }, - { label: "Security", href: "#" }, - ], - }, + { name: "Chat", id: "/" }, + { name: "Tools", id: "#tools" }, + { name: "Pricing", id: "#pricing" }, + { name: "FAQ", id: "#faq" }, + { name: "Contact", id: "/chat" }, ]; return ( @@ -59,411 +24,139 @@ export default function DashboardPage() { borderRadius="soft" contentWidth="mediumSmall" sizing="largeSmallSizeLargeTitles" - background="fluid" + background="circleGradient" cardStyle="layered-gradient" primaryButtonStyle="radial-glow" secondaryButtonStyle="solid" headingFontWeight="light" > - {/* Navbar */} - {/* Hero Section */} -
+
- {/* Features Section */} -
+
- {/* Tools Section */} -
- -
- - {/* How It Works Section */} -
- -
- - {/* Testimonials Section */} -
- -
- - {/* Pricing Section */} -
- -
- - {/* FAQ Section */} -
- -
- - {/* Footer Section */} -