Initial commit: Kottgard production website code

This commit is contained in:
2026-06-19 15:46:23 +00:00
commit e0273c46d7
196 changed files with 29799 additions and 0 deletions
+47
View File
@@ -0,0 +1,47 @@
'use client';
import Link from 'next/link';
import Button from '@/components/ui/Button';
import { ArrowRight, MessageCircle } from 'lucide-react';
import { useTranslation } from '@/hooks/useTranslation';
import { WHATSAPP_URL } from '@/lib/constants';
export default function CTA() {
const { t } = useTranslation();
return (
<section className="py-20">
<div className="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
<div className="relative overflow-hidden rounded-3xl bg-gradient-to-br from-brand-700 to-brand-900 px-8 py-16 text-center sm:px-16">
<div className="absolute -right-20 -top-20 h-60 w-60 rounded-full bg-gold-500/10" />
<div className="absolute -bottom-16 -left-16 h-48 w-48 rounded-full bg-gold-500/10" />
<div className="relative">
<h2 className="mb-4 font-display text-3xl font-bold text-white md:text-4xl">
{t('cta.title')}
</h2>
<p className="mx-auto mb-8 max-w-xl text-brand-100">{t('cta.subtitle')}</p>
<div className="flex flex-col items-center justify-center gap-4 sm:flex-row">
<Link href="/shop">
<Button variant="gold" size="lg">
{t('cta.button')}
<ArrowRight className="h-4 w-4 rtl:rotate-180" />
</Button>
</Link>
<a href={WHATSAPP_URL} target="_blank" rel="noopener noreferrer">
<Button
variant="secondary"
size="lg"
className="border-white/30 bg-white/10 text-white hover:border-gold-400/50 hover:bg-white/15"
>
<MessageCircle className="h-4 w-4" />
{t('cta.whatsapp')}
</Button>
</a>
</div>
</div>
</div>
</div>
</section>
);
}