8 Commits

Author SHA1 Message Date
9991d1c74f Update src/app/page.tsx 2026-06-03 21:53:54 +00:00
8eb5b4e112 Update src/app/chatbot/page.tsx 2026-06-03 21:53:53 +00:00
641dcbfdce Update src/app/page.tsx 2026-06-03 21:53:10 +00:00
4e84e58a92 Add src/app/chatbot/page.tsx 2026-06-03 21:53:10 +00:00
c03b42e021 Merge version_2 into main
Merge version_2 into main
2026-06-03 21:51:18 +00:00
828d9d14f6 Update src/app/page.tsx 2026-06-03 21:51:15 +00:00
ed692b0107 Merge version_1 into main
Merge version_1 into main
2026-06-03 21:48:37 +00:00
6cf7f2fc4a Merge version_1 into main
Merge version_1 into main
2026-06-03 21:47:49 +00:00
2 changed files with 62 additions and 7 deletions

56
src/app/chatbot/page.tsx Normal file
View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="mediumSmall"
sizing="mediumLarge"
background="noise"
cardStyle="outline"
primaryButtonStyle="double-inset"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Features", id: "#features" },
{ name: "Pricing", id: "#pricing" },
{ name: "Testimonials", id: "#testimonials" },
{ name: "FAQ", id: "#faq" },
{ name: "Contact", id: "#contact" },
{ name: "Chatbot", id: "/chatbot" }
]}
brandName="core"
/>
</div>
<div id="hero" data-section="hero">
<HeroLogo
logoText="Chatbot"
description="Our advanced AI chatbot provides instant, accurate, and personalized assistance. Experience seamless conversations and get the information you need, when you need it."
buttons={[
{ text: "Try Now", href: "#" },
{ text: "Learn More", href: "#" },
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/robot-handshake-human-background_23-2149524388.jpg"
imageAlt="AI chatbot interacting with a user"
showDimOverlay={true}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -43,6 +43,8 @@ export default function LandingPage() {
name: "FAQ", id: "#faq"},
{
name: "Contact", id: "#contact"},
{
name: "Chatbot", id: "/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"
@@ -102,7 +103,7 @@ export default function LandingPage() {
userIcon: User,
exchanges: [
{
userMessage: "What's the latest in quantum computing?", aiResponse: "Searching the web... Quantum computing continues to advance rapidly, with breakthroughs in entanglement stability and error correction being recent highlights. Companies like IBM and Google are leading the charge..."},
userMessage: "What's the latest in quantum computing?", aiResponse: "Searching the web... Quantum computing continues to advance rapidly, with breakthroughs in entanglement stability and error correction being recent highlights. Companies like IBM and Google are leading the charge."},
{
userMessage: "What is the capital of France?", aiResponse: "The capital of France is Paris."},
],
@@ -296,9 +297,7 @@ export default function LandingPage() {
{
label: "FAQ", href: "#faq"},
{
label: "Help Center", href: "#"},
{
label: "Terms of Service", href: "#"},
label: "Chatbot", href: "/chatbot"}
],
},
]}
@@ -308,4 +307,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}