Update src/app/page.tsx

This commit is contained in:
2026-04-08 10:56:24 +00:00
parent 7b23199b6f
commit 07b7b85e95

View File

@@ -2,6 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import { Zap, Clock, Mic, Trash2 } from "lucide-react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterSimple from '@/components/sections/footer/FooterSimple';
@@ -29,17 +30,11 @@ export default function LandingPage() {
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "home",
},
name: "Home", id: "home"},
{
name: "Features",
id: "features",
},
name: "Features", id: "features"},
{
name: "Contact",
id: "contact",
},
name: "Contact", id: "contact"},
]}
brandName="AI ChatBot"
/>
@@ -48,19 +43,14 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroLogoBillboard
background={{
variant: "gradient-bars",
}}
variant: "gradient-bars"}}
logoText="AI Chat Assistant"
description="Meet your intelligent conversational companion. Built to help with daily tasks, general queries, and multilingual support in English and Marathi."
buttons={[
{
text: "Start Chatting",
href: "#contact",
},
text: "Start Chatting", href: "#contact"},
{
text: "Learn More",
href: "#features",
},
text: "Learn More", href: "#features"},
]}
imageSrc="http://img.b2bpic.net/free-photo/futuristic-ai-data-visualization_23-2151977857.jpg"
mediaAnimation="slide-up"
@@ -73,29 +63,17 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
title: "Intelligent Conversations",
description: "Advanced logic to provide helpful answers for daily queries and general knowledge.",
buttonIcon: "Zap",
imageSrc: "http://img.b2bpic.net/free-photo/y2k-website-window-illustration_23-2151874937.jpg",
},
title: "Intelligent Conversations", description: "Advanced logic to provide helpful answers for daily queries and general knowledge.", buttonIcon: Zap,
imageSrc: "http://img.b2bpic.net/free-photo/y2k-website-window-illustration_23-2151874937.jpg"},
{
title: "Typing Animation",
description: "Realistic 'bot thinking' effect to make interactions feel more natural and engaging.",
buttonIcon: "Clock",
imageSrc: "http://img.b2bpic.net/free-photo/futuristic-time-machine_23-2151599351.jpg",
},
title: "Typing Animation", description: "Realistic 'bot thinking' effect to make interactions feel more natural and engaging.", buttonIcon: Clock,
imageSrc: "http://img.b2bpic.net/free-photo/futuristic-time-machine_23-2151599351.jpg"},
{
title: "Voice Input Support",
description: "Interact using voice for hands-free queries, perfect for accessibility and speed.",
buttonIcon: "Mic",
imageSrc: "http://img.b2bpic.net/free-vector/gradient-ui-kit-collection_23-2149200480.jpg",
},
title: "Voice Input Support", description: "Interact using voice for hands-free queries, perfect for accessibility and speed.", buttonIcon: Mic,
imageSrc: "http://img.b2bpic.net/free-vector/gradient-ui-kit-collection_23-2149200480.jpg"},
{
title: "Easy Chat Management",
description: "Quickly clear your session history or reset the bot with a single tap.",
buttonIcon: "Trash2",
imageSrc: "http://img.b2bpic.net/free-vector/ui-buttons-set_78370-9343.jpg",
},
title: "Easy Chat Management", description: "Quickly clear your session history or reset the bot with a single tap.", buttonIcon: Trash2,
imageSrc: "http://img.b2bpic.net/free-vector/ui-buttons-set_78370-9343.jpg"},
]}
title="Smart Features Built for You"
description="Experience a modern chat interface designed for efficiency, intelligence, and accessibility."
@@ -107,14 +85,10 @@ export default function LandingPage() {
useInvertedBackground={false}
title="The Technology Behind the Chat"
description={[
"Our AI engine is built on robust language models optimized for low latency and high accuracy.",
"We prioritize user privacy and intuitive design, ensuring that every interaction feels personal, secure, and helpful.",
]}
"Our AI engine is built on robust language models optimized for low latency and high accuracy.", "We prioritize user privacy and intuitive design, ensuring that every interaction feels personal, secure, and helpful."]}
buttons={[
{
text: "View Documentation",
href: "#",
},
text: "View Documentation", href: "#"},
]}
/>
</div>
@@ -128,38 +102,19 @@ export default function LandingPage() {
description="Select the right access level for your personal or professional needs."
plans={[
{
id: "basic",
badge: "Free",
price: "$0",
subtitle: "For casual users",
features: [
"Standard AI responses",
"Basic chat history",
"Web access only",
],
id: "basic", badge: "Free", price: "$0", subtitle: "For casual users", features: [
"Standard AI responses", "Basic chat history", "Web access only"],
buttons: [
{
text: "Get Started",
href: "#",
},
text: "Get Started", href: "#"},
],
},
{
id: "pro",
badge: "Pro",
price: "$15",
subtitle: "For power users",
features: [
"Priority access",
"Advanced history sync",
"Voice input features",
"Multilingual support",
],
id: "pro", badge: "Pro", price: "$15", subtitle: "For power users", features: [
"Priority access", "Advanced history sync", "Voice input features", "Multilingual support"],
buttons: [
{
text: "Upgrade Now",
href: "#",
},
text: "Upgrade Now", href: "#"},
],
},
]}
@@ -170,8 +125,7 @@ export default function LandingPage() {
<ContactCenter
useInvertedBackground={false}
background={{
variant: "animated-grid",
}}
variant: "animated-grid"}}
tag="Get Started"
title="Start Your Chat Now"
description="Ready to test the intelligent assistant? Sign up to access your personal chat dashboard."
@@ -184,29 +138,19 @@ export default function LandingPage() {
<FooterSimple
columns={[
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About",
href: "#",
},
label: "About", href: "#"},
{
label: "Support",
href: "#",
},
label: "Support", href: "#"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
],
},
]}