Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9991d1c74f | |||
| 8eb5b4e112 | |||
| 641dcbfdce | |||
| 4e84e58a92 | |||
| c03b42e021 |
56
src/app/chatbot/page.tsx
Normal file
56
src/app/chatbot/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
@@ -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"
|
||||
@@ -294,7 +295,9 @@ export default function LandingPage() {
|
||||
{
|
||||
title: "Support", items: [
|
||||
{
|
||||
label: "FAQ", href: "#faq"}
|
||||
label: "FAQ", href: "#faq"},
|
||||
{
|
||||
label: "Chatbot", href: "/chatbot"}
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user