"use client"; import { Button } from "@/components/ui/button"; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; import { Badge } from "@/components/ui/badge"; import { Shield, Thermometer, Sun, Eye, Star, CheckCircle, ArrowRight } from "lucide-react"; import Link from "next/link"; import Image from "next/image"; export default function HomePage() { const filmSeries = [ { name: "Ceramic Series", description: "Premium ceramic technology for maximum heat rejection", href: "/products/ceramic", features: ["99% UV Protection", "92% Heat Rejection", "Crystal Clear"], color: "bg-black" }, { name: "Carbon Series", description: "Advanced carbon films with superior performance", href: "/products/carbon", features: ["Signal Friendly", "Fade Resistant", "Non-Metallic"], color: "bg-gray-600" }, { name: "Premium Series", description: "Professional grade films for discerning customers", href: "/products/premium", features: ["Architectural Grade", "Enhanced Durability", "Premium Quality"], color: "" }, { name: "Professional Series", description: "Commercial grade solutions for reliable protection", href: "/products/professional", features: ["Cost-Effective", "Reliable Performance", "Commercial Grade"], color: "" } ]; const benefits = [ { icon: Shield, title: "99% UV Protection", description: "Block harmful UV rays that cause interior fading and skin damage" }, { icon: Thermometer, title: "Superior Heat Rejection", description: "Reduce interior temperature by up to 8°C for maximum comfort" }, { icon: Sun, title: "Glare Reduction", description: "Minimize glare for safer driving and enhanced visibility" }, { icon: Eye, title: "Crystal Clear Optics", description: "Maintain excellent visibility with minimal color distortion" } ]; return (
{/* Hero Section */}
Professional automotive window tinting installation
Professional Heat Rejection Films

Superior Heat Rejection Window Films

Transform your vehicle's comfort and efficiency with our premium heat rejection window films. Professional installation, lifetime warranty, and unmatched performance guaranteed.

{/* Benefits Section */}

Why Choose Our Heat Rejection Films?

Experience the difference that professional-grade heat rejection technology makes for your vehicle.

{benefits.map((benefit, index) => (

{benefit.title}

{benefit.description}

))}
{/* Product Series Section */}

Our Film Series

Choose from our comprehensive range of heat rejection films designed for every need and budget.

{filmSeries.map((series, index) => (
{series.name.split(' ')[0]}
{series.name} {series.description}
    {series.features.map((feature, featureIndex) => (
  • {feature}
  • ))}
))}
{/* Performance Stats */}

Proven Performance Results

{[ { value: "99%", label: "UV Protection" }, { value: "92%", label: "Heat Rejection" }, { value: "50%", label: "Glare Reduction" }, { value: "8°C", label: "Temperature Reduction" } ].map((stat, index) => (
{stat.value}
{stat.label}
))}
{/* Call to Action */}

Ready to Experience the Difference?

Join thousands of satisfied customers who have transformed their vehicles with our premium heat rejection films.

); }