diff --git a/src/app/page.tsx b/src/app/page.tsx index 27e350f..a825123 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterBase from '@/components/sections/footer/FooterBase'; -import { Sparkles, Zap, Lightbulb, Download, Palette, TrendingUp, Users, Star, CheckCircle, BarChart3, CheckSquare2, Calendar, Settings, MessageCircle, Crown } from 'lucide-react'; +import { Sparkles, Zap, Lightbulb, Download, Palette, TrendingUp, Users, Star, CheckCircle, BarChart3, CheckSquare2, Calendar, Settings, MessageCircle, Crown, Eye } from 'lucide-react'; export default function LandingPage() { return ( @@ -55,7 +55,7 @@ export default function LandingPage() { buttonAnimation="slide-up" background={{ variant: "radial-gradient" }} dashboard={{ - title: "Habit Tracker Interface", logoIcon: Target, + title: "Habit Tracker Interface", logoIcon: Eye, imageSrc: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148371410.jpg", searchPlaceholder: "Search habits...", sidebarItems: [ { icon: BarChart3, active: true }, { icon: CheckSquare2, active: false }, @@ -82,7 +82,7 @@ export default function LandingPage() { ], listTitle: "Recent Activities", listItems: [ { icon: CheckCircle, title: "Morning Routine", status: "Completed" }, - { icon: BookOpen, title: "Reading: 30 mins", status: "Completed" }, + { icon: Lightbulb, title: "Reading: 30 mins", status: "Completed" }, { icon: Zap, title: "Exercise Session", status: "In Progress" } ] }} @@ -169,6 +169,9 @@ export default function LandingPage() { tag="Featured In" textboxLayout="default" useInvertedBackground={false} + names={[ + "ProductHunt", "TechCrunch", "Lifehacker", "Forbes", "Medium", "HackerNews", "IndieHackers" + ]} logos={[ "http://img.b2bpic.net/free-vector/logo-template-design_1156-837.jpg", "http://img.b2bpic.net/free-vector/gradient-technology-logo-template-collection_23-2148220592.jpg", "http://img.b2bpic.net/free-vector/flat-minimal-technology-labels_23-2149083696.jpg", "http://img.b2bpic.net/free-vector/gradient-marketing-logo-collection_23-2149119293.jpg", "http://img.b2bpic.net/free-vector/geometric-harmony-hills-private-school-logo-template_742173-18879.jpg", "http://img.b2bpic.net/free-vector/flat-electronics-logos-pack_23-2148978776.jpg", "http://img.b2bpic.net/free-vector/gradient-colored-data-logo-template_23-2149182756.jpg" ]} @@ -263,7 +266,3 @@ export default function LandingPage() { ); } - -// Missing import: Target (Lucide icon used in dashboard.logoIcon) -// This component uses Target as logoIcon but it was not available in lucide-react -// Rendering will continue with other icons; Target should be replaced with an available icon