Update src/app/product/page.tsx

This commit is contained in:
2026-03-26 09:12:41 +00:00
parent 985fa7f98d
commit 534722ce40

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
import FooterCard from '@/components/sections/footer/FooterCard';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import { Linkedin, Twitter } from "lucide-react";
import { Circle, Linkedin, Twitter } from "lucide-react";
export default function LandingPage() {
return (
@@ -65,9 +65,9 @@ export default function LandingPage() {
imageAlt: "Abstract visualization of global data points",
},
items: [
{ text: "Real-time indexing" },
{ text: "Multi-source synthesis" },
{ text: "Customizable feeds" },
{ text: "Real-time indexing", icon: Circle },
{ text: "Multi-source synthesis", icon: Circle },
{ text: "Customizable feeds", icon: Circle },
],
reverse: false,
},
@@ -80,9 +80,9 @@ export default function LandingPage() {
imageAlt: "A futuristic, sleek AI dashboard",
},
items: [
{ text: "Predictive analytics" },
{ text: "Anomaly detection" },
{ text: "Sentiment analysis" },
{ text: "Predictive analytics", icon: Circle },
{ text: "Anomaly detection", icon: Circle },
{ text: "Sentiment analysis", icon: Circle },
],
reverse: true,
},
@@ -95,7 +95,7 @@ export default function LandingPage() {
imageAlt: "A researcher analyzing complex data",
},
items: [
{ text: "Interactive dashboards" },
{ text: "Interactive dashboards", icon: Circle },
],
},
]}