bandsbender's picture
Upload 348 files
21a686e verified
raw
history blame
2.39 kB
import { Sun, Thermometer, Diamond } from 'lucide-react'
const features = [
{
name: '99% UV Protection',
description:
'Block harmful UV rays that cause fading and skin damage while maintaining clear visibility',
href: '#',
icon: Sun,
},
{
name: 'Superior Heat Rejection',
description:
'Reduce interior heat by up to 85% for improved comfort and energy savings',
href: '#',
icon: Thermometer,
},
{
name: 'Lifetime Durability',
description:
'Scratch-resistant ceramic film that maintains its performance for years without bubbling or peeling',
href: '#',
icon: Diamond,
},
]
export default function SimpleThreeColumnWithLargeIcons() {
return (
<div className="bg-white py-24 sm:py-32">
<div className="mx-auto max-w-7xl px-6 lg:px-8">
<div className="mx-auto max-w-2xl lg:mx-0">
<h2 className="text-4xl font-semibold tracking-tight text-pretty text-gray-900 sm:text-5xl">
Why Choose Ceramic Shield?
</h2>
<p className="mt-6 text-lg/8 text-gray-600">
Advanced ceramic technology that delivers unmatched performance and protection.
</p>
</div>
<div className="mx-auto mt-16 max-w-2xl sm:mt-20 lg:mt-24 lg:max-w-none">
<dl className="grid max-w-xl grid-cols-1 gap-x-8 gap-y-16 lg:max-w-none lg:grid-cols-3">
{features.map((feature) => (
<div key={feature.name} className="flex flex-col">
<dt className="text-base/7 font-semibold text-gray-900">
<div className="mb-6 flex size-10 items-center justify-center rounded-lg bg-red-600">
<feature.icon aria-hidden="true" className="size-6 text-white" />
</div>
{feature.name}
</dt>
<dd className="mt-1 flex flex-auto flex-col text-base/7 text-gray-600">
<p className="flex-auto">{feature.description}</p>
<p className="mt-6">
<a href={feature.href} className="text-sm/6 font-semibold text-red-600 hover:text-red-500">
Learn more <span aria-hidden="true"></span>
</a>
</p>
</dd>
</div>
))}
</dl>
</div>
</div>
</div>
)
}