Update to v1.1 website code from kottgard-production-v1.1.zip

This commit is contained in:
root
2026-06-24 09:16:58 +00:00
parent 582a2f33ad
commit 8e40bc220e
75 changed files with 406 additions and 148 deletions
+11 -2
View File
@@ -3,6 +3,7 @@
import AppImage from '@/components/ui/AppImage';
import Button from '@/components/ui/Button';
import Logo from '@/components/ui/Logo';
import TrustBadges from '@/components/home/TrustBadges';
import { ArrowRight, ShieldCheck, MapPin, Clock } from 'lucide-react';
import { useTranslation } from '@/hooks/useTranslation';
import { PAGE_IMAGES } from '@/infrastructure/images';
@@ -28,8 +29,8 @@ export default function Hero() {
<div className="pointer-events-none absolute inset-0 bg-gradient-to-r from-brand-950/95 via-brand-900/85 to-brand-900/40" />
<div className="pointer-events-none absolute inset-0 bg-gradient-to-t from-brand-950/60 via-transparent to-transparent" />
<div className="relative z-10 mx-auto flex min-h-[85vh] max-w-7xl flex-col justify-center px-4 py-20 sm:px-6 lg:px-8 lg:py-28">
<div className="max-w-2xl animate-slide-up">
<div className="relative z-10 mx-auto grid min-h-[85vh] max-w-7xl items-center gap-10 px-4 py-20 sm:px-6 lg:grid-cols-2 lg:gap-12 lg:px-8 lg:py-28">
<div className="max-w-2xl">
<div className="mb-8 flex items-center gap-4">
<Logo size="lg" className="ring-gold-400/40 shadow-premium-lg" />
<div>
@@ -57,6 +58,10 @@ export default function Hero() {
{t('hero.subtitle')}
</p>
<div className="mb-8 lg:hidden">
<TrustBadges />
</div>
<div className="mb-8 flex flex-wrap gap-4 text-sm text-brand-200">
<span className="flex items-center gap-1.5">
<Clock className="h-4 w-4 text-gold-400" />
@@ -84,6 +89,10 @@ export default function Hero() {
</Button>
</div>
</div>
<div className="hidden lg:flex lg:items-center lg:justify-center">
<TrustBadges />
</div>
</div>
<div className="pointer-events-none absolute bottom-0 left-0 right-0 z-[1] h-20 bg-gradient-to-t from-cream-50 to-transparent" />