diff --git a/src/app/page.tsx b/src/app/page.tsx
index 093ee9c..7b0474c 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -2,6 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
+import { Mic, Brain, Zap, Globe } from "lucide-react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
@@ -28,18 +29,9 @@ export default function LandingPage() {
@@ -48,37 +40,16 @@ export default function LandingPage() {
@@ -89,30 +60,10 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={true}
features={[
- {
- title: "Voice Interaction",
- description: "Speak naturally with speech-to-text and text-to-speech engine.",
- imageSrc: "http://img.b2bpic.net/free-photo/3d-abstract-soundwaves-background-with-flowing-lines_1048-15842.jpg",
- buttonIcon: "Mic",
- },
- {
- title: "Infinite Context Memory",
- description: "Deep conversational flow where SENSAI remembers every interaction.",
- imageSrc: "http://img.b2bpic.net/free-photo/blurred-night-lights_23-2148139245.jpg",
- buttonIcon: "Brain",
- },
- {
- title: "Instant Real-Time Stream",
- description: "Lightning-fast response streaming for a true real-time chat experience.",
- imageSrc: "http://img.b2bpic.net/free-photo/optical-fiber-background_23-2149301599.jpg",
- buttonIcon: "Zap",
- },
- {
- title: "Universal Languages",
- description: "Support for all major languages with automatic detection.",
- imageSrc: "http://img.b2bpic.net/free-photo/customer-relationship-management-concept_23-2150038403.jpg",
- buttonIcon: "Globe",
- },
+ { title: "Voice Interaction", description: "Speak naturally with speech-to-text and text-to-speech engine.", imageSrc: "http://img.b2bpic.net/free-photo/3d-abstract-soundwaves-background-with-flowing-lines_1048-15842.jpg", buttonIcon: Mic },
+ { title: "Infinite Context Memory", description: "Deep conversational flow where SENSAI remembers every interaction.", imageSrc: "http://img.b2bpic.net/free-photo/blurred-night-lights_23-2148139245.jpg", buttonIcon: Brain },
+ { title: "Instant Real-Time Stream", description: "Lightning-fast response streaming for a true real-time chat experience.", imageSrc: "http://img.b2bpic.net/free-photo/optical-fiber-background_23-2149301599.jpg", buttonIcon: Zap },
+ { title: "Universal Languages", description: "Support for all major languages with automatic detection.", imageSrc: "http://img.b2bpic.net/free-photo/customer-relationship-management-concept_23-2150038403.jpg", buttonIcon: Globe },
]}
title="Limitless AI Capabilities"
description="SENSAI is engineered for performance, versatility, and total freedom in your conversations."
@@ -124,26 +75,10 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
faqs={[
- {
- id: "1",
- title: "Is SENSAI free to use?",
- content: "Yes, we offer a free tier with unlimited chats for all users.",
- },
- {
- id: "2",
- title: "Can I export my chat history?",
- content: "Absolutely! You can export your conversations to PDF directly from settings.",
- },
- {
- id: "3",
- title: "Is my data private?",
- content: "Security is our priority. All conversations are encrypted end-to-end.",
- },
- {
- id: "4",
- title: "Does it support coding?",
- content: "Yes, SENSAI excels at coding, business logic, and creative writing.",
- },
+ { id: "1", title: "Is SENSAI free to use?", content: "Yes, we offer a free tier with unlimited chats for all users." },
+ { id: "2", title: "Can I export my chat history?", content: "Absolutely! You can export your conversations to PDF directly from settings." },
+ { id: "3", title: "Is my data private?", content: "Security is our priority. All conversations are encrypted end-to-end." },
+ { id: "4", title: "Does it support coding?", content: "Yes, SENSAI excels at coding, business logic, and creative writing." },
]}
title="Frequently Asked Questions"
description="Everything you need to know about starting your SENSAI journey."
@@ -159,57 +94,9 @@ export default function LandingPage() {
title="Choose Your Path"
description="Flexible plans designed to scale with your curiosity and professional requirements."
plans={[
- {
- id: "p1",
- name: "Explorer",
- price: "$0",
- features: [
- "Unlimited daily chats",
- "Standard model access",
- "Core memory storage",
- ],
- buttons: [
- {
- text: "Get Started",
- href: "#",
- },
- ],
- },
- {
- id: "p2",
- name: "Pro",
- price: "$29",
- badge: "Popular",
- features: [
- "Priority processing speed",
- "Advanced 3D Avatar modes",
- "Unlimited PDF context",
- "Plugin access",
- ],
- buttons: [
- {
- text: "Upgrade to Pro",
- href: "#",
- },
- ],
- },
- {
- id: "p3",
- name: "Enterprise",
- price: "Custom",
- features: [
- "SSO & Security features",
- "Dedicated compute nodes",
- "Custom fine-tuning",
- "API access",
- ],
- buttons: [
- {
- text: "Contact Sales",
- href: "#",
- },
- ],
- },
+ { id: "p1", name: "Explorer", price: "$0", features: ["Unlimited daily chats", "Standard model access", "Core memory storage"], buttons: [{ text: "Get Started", href: "#" }] },
+ { id: "p2", name: "Pro", price: "$29", badge: "Popular", features: ["Priority processing speed", "Advanced 3D Avatar modes", "Unlimited PDF context", "Plugin access"], buttons: [{ text: "Upgrade to Pro", href: "#" }] },
+ { id: "p3", name: "Enterprise", price: "Custom", features: ["SSO & Security features", "Dedicated compute nodes", "Custom fine-tuning", "API access"], buttons: [{ text: "Contact Sales", href: "#" }] },
]}
/>
@@ -217,9 +104,7 @@ export default function LandingPage() {