diff --git a/components/ai-features.tsx b/components/ai-features.tsx new file mode 100644 index 0000000..1f2fd9b --- /dev/null +++ b/components/ai-features.tsx @@ -0,0 +1,57 @@ +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Brain, Zap, ShieldCheck, BarChart3 } from "lucide-react"; + +const aiFeatures = [ + { + title: "AI Paint Analysis", + description: "We use computer vision to detect microscopic paint defects that the human eye misses, ensuring a 100% perfect correction.", + icon: Brain + }, + { + title: "Smart Coating Tech", + description: "Our ceramic coatings utilize nano-AI particles that self-level and bond at a molecular level for extreme durability.", + icon: Zap + }, + { + title: "Predictive Maintenance", + description: "Get automated alerts when your coating needs a top-up based on Cedar Rapids weather patterns and your driving habits.", + icon: BarChart3 + }, + { + title: "Precision Protection", + description: "AI-guided application ensures uniform thickness across every panel, maximizing protection and gloss.", + icon: ShieldCheck + } +]; + +export function AIFeatures() { + return ( +
+
+ +
+
+ Next-Gen Detailing +
+ The Future of Car Care + + We've combined master craftsmanship with AI-driven technology to deliver results that were previously impossible. + +
+
+ {aiFeatures.map((feature, i) => ( +
+
+ +
+

{feature.title}

+

{feature.description}

+
+ ))} +
+
+
+ ); +}