From 4e84e58a92ce6e4237217ff47a25783d269f6004 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 3 Jun 2026 21:53:10 +0000 Subject: [PATCH 1/2] Add src/app/chatbot/page.tsx --- src/app/chatbot/page.tsx | 56 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 src/app/chatbot/page.tsx diff --git a/src/app/chatbot/page.tsx b/src/app/chatbot/page.tsx new file mode 100644 index 0000000..86a6e00 --- /dev/null +++ b/src/app/chatbot/page.tsx @@ -0,0 +1,56 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroLogo from '@/components/sections/hero/HeroLogo'; +import { Bot } from "lucide-react"; + +export default function ChatbotPage() { + return ( + + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file -- 2.49.1 From 641dcbfdcec4a7a5ba2a215953a31b2f7bca5193 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 3 Jun 2026 21:53:10 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index daefbee..ea8c383 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -43,6 +43,8 @@ export default function LandingPage() { name: "FAQ", id: "#faq"}, { name: "Contact", id: "#contact"}, + { + name: "Chatbot", href: "/chatbot"}, ]} brandName="core" /> @@ -80,8 +82,7 @@ export default function LandingPage() { { title: "Real-time Internet Search", description: "core actively searches the web to provide the latest information for every query."}, { - title: "Premium Interaction", description: "Experience smooth, natural, and highly intuitive conversations tailored to your needs."}, - ]} + title: "Premium Interaction", description: "Experience smooth, natural, and highly intuitive conversations tailored to your needs."}]} imageSrc="http://img.b2bpic.net/free-photo/abstract-technology-background-concept_1194-617185.jpg" imageAlt="Illustration of AI accuracy and knowledge search" mediaAnimation="slide-up" @@ -294,7 +295,9 @@ export default function LandingPage() { { title: "Support", items: [ { - label: "FAQ", href: "#faq"} + label: "FAQ", href: "#faq"}, + { + label: "Chatbot", href: "/chatbot"} ], }, ]} -- 2.49.1