From 534722ce40487a00a55396dac4420a48bb405d52 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 09:12:41 +0000 Subject: [PATCH] Update src/app/product/page.tsx --- src/app/product/page.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/product/page.tsx b/src/app/product/page.tsx index 6fc3915..7a21dbd 100644 --- a/src/app/product/page.tsx +++ b/src/app/product/page.tsx @@ -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 }, ], }, ]}