diff --git a/src/app/chat/page.tsx b/src/app/chat/page.tsx new file mode 100644 index 0000000..d4d71c1 --- /dev/null +++ b/src/app/chat/page.tsx @@ -0,0 +1,68 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import { MessageSquare, Send, Bot, User } from "lucide-react"; +import { useState } from "react"; + +export default function ChatPage() { + const [messages, setMessages] = useState([ + { role: "bot", content: "Hello! I'm Claude. How can I assist you with your liquid glass interface today?" } + ]); + + return ( + + + + +
+
+
+ {messages.map((msg, i) => ( +
+
+ {msg.role === 'bot' ? : } +
+
+ {msg.content} +
+
+ ))} +
+ +
+ + +
+
+
+ + +
+
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index f7dd98a..c5b806d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,12 +31,10 @@ export default function LandingPage() { @@ -101,15 +75,9 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} features={[ - { - icon: Star, - title: "Contextual Mastery", description: "Claude understands nuance, tone, and complex reasoning in every interaction."}, - { - icon: Code, - title: "Advanced Coding", description: "Write, debug, and optimize complex software with an AI that speaks your language."}, - { - icon: ShieldCheck, - title: "Safety First", description: "Engineered with foundational safety protocols for reliable, responsible output."}, + { icon: Star, title: "Contextual Mastery", description: "Claude understands nuance, tone, and complex reasoning in every interaction." }, + { icon: Code, title: "Advanced Coding", description: "Write, debug, and optimize complex software with an AI that speaks your language." }, + { icon: ShieldCheck, title: "Safety First", description: "Engineered with foundational safety protocols for reliable, responsible output." }, ]} title="Features that redefine." description="Harness powerful capabilities to elevate your productivity and creative work." @@ -122,15 +90,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={true} metrics={[ - { - id: "m1", icon: Zap, - title: "Response Speed", value: "45ms"}, - { - id: "m2", icon: Lightbulb, - title: "Context Window", value: "200k"}, - { - id: "m3", icon: CheckCircle2, - title: "Accuracy", value: "99.9%"}, + { id: "m1", icon: Zap, title: "Response Speed", value: "45ms" }, + { id: "m2", icon: Lightbulb, title: "Context Window", value: "200k" }, + { id: "m3", icon: CheckCircle2, title: "Accuracy", value: "99.9%" }, ]} title="Performance metrics." description="Quantifiable impact for every project." @@ -143,21 +105,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} testimonials={[ - { - id: "t1", name: "Alex River", handle: "@ariver", testimonial: "Claude has completely transformed how I approach creative writing.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/night-workaholic_1098-13344.jpg"}, - { - id: "t2", name: "Jamie Lee", handle: "@jlee", testimonial: "The reasoning capabilities are miles ahead of competitors.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/abstract-blue-portrait_23-2151998016.jpg"}, - { - id: "t3", name: "Sam Frost", handle: "@samf", testimonial: "Seamless integration and intuitive interface, simply brilliant.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-cartoon-style_23-2151134201.jpg"}, - { - id: "t4", name: "Jordan P.", handle: "@jordanp", testimonial: "Unparalleled speed and accuracy in every single query.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/young-man-having-videoconference_23-2147859216.jpg"}, - { - id: "t5", name: "Morgan D.", handle: "@mdaw", testimonial: "Essential for my daily research tasks, absolutely reliable.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/closeup-hand-pressing-screen_53876-101866.jpg"}, + { id: "t1", name: "Alex River", handle: "@ariver", testimonial: "Claude has completely transformed how I approach creative writing.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/night-workaholic_1098-13344.jpg" }, + { id: "t2", name: "Jamie Lee", handle: "@jlee", testimonial: "The reasoning capabilities are miles ahead of competitors.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/abstract-blue-portrait_23-2151998016.jpg" }, + { id: "t3", name: "Sam Frost", handle: "@samf", testimonial: "Seamless integration and intuitive interface, simply brilliant.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-cartoon-style_23-2151134201.jpg" }, ]} showRating={true} title="Trusted globally." @@ -169,12 +119,8 @@ export default function LandingPage() { @@ -203,26 +146,12 @@ export default function LandingPage() { ); -} +} \ No newline at end of file