Files
website/components/TrustIndicators.tsx
Matt d0f33f66f3
Some checks failed
build-website / build (push) Failing after 7s
feat: Migrate to Next.js with complete mobile-optimized website
- Replaced Vue/Nuxt with Next.js 15 for better performance and simpler architecture
- Implemented all website sections with responsive design:
  - Hero section with video background and mobile-optimized spacing
  - About section with feature highlights
  - Services showcase with 3 service cards
  - Contact section with CTAs and trust badges
  - Footer with branding
- Added Lucide React icons throughout
- Mobile optimizations:
  - Responsive text and button sizing
  - Touch-friendly CTAs
  - Proper spacing adjustments for mobile/desktop
  - Scroll indicator with bouncing chevron
- Archived Vue/Nuxt version in vue-archive folder
- Moved all assets to Next.js public folder

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-26 16:12:00 +02:00

29 lines
1.4 KiB
TypeScript

'use client'
import { Award, Wrench, ShieldCheck } from 'lucide-react'
export default function TrustIndicators() {
return (
<section className="py-16 md:py-20 bg-white">
<div className="container mx-auto px-4">
<div className="grid grid-cols-2 md:grid-cols-3 gap-8 md:gap-10 max-w-4xl mx-auto">
<div className="flex flex-col items-center text-center">
<Award className="w-12 h-12 text-harbor-gold mb-4" />
<span className="text-3xl md:text-4xl font-bold text-harbor-blue">20+</span>
<span className="text-sm md:text-base text-gray-600 mt-1">Years Experience</span>
</div>
<div className="flex flex-col items-center text-center">
<Wrench className="w-12 h-12 text-harbor-gold mb-4" />
<span className="text-3xl md:text-4xl font-bold text-harbor-blue">100%</span>
<span className="text-sm md:text-base text-gray-600 mt-1">Customizable Service</span>
</div>
<div className="flex flex-col items-center text-center col-span-2 md:col-span-1">
<ShieldCheck className="w-12 h-12 text-harbor-gold mb-4" />
<span className="text-3xl md:text-4xl font-bold text-harbor-blue">100%</span>
<span className="text-sm md:text-base text-gray-600 mt-1">Certified Experts</span>
</div>
</div>
</div>
</section>
)
}