diff --git a/index.html b/index.html index 21b127f..185b271 100644 --- a/index.html +++ b/index.html @@ -12,7 +12,7 @@ - + diff --git a/src/components/home/ContactSection.tsx b/src/components/home/ContactSection.tsx deleted file mode 100644 index 0a167e9..0000000 --- a/src/components/home/ContactSection.tsx +++ /dev/null @@ -1,99 +0,0 @@ -import { useState } from 'react'; -import { Mail, Users, Send, ArrowUpRight } from 'lucide-react'; -import { useLanguage } from '../../contexts/LanguageContext'; - -export default function ContactSection() { - const { t } = useLanguage(); - const c = t.marketing.contact; - const [status, setStatus] = useState<'idle' | 'sending' | 'sent'>('idle'); - - const handleSubmit = (e: React.FormEvent) => { - e.preventDefault(); - setStatus('sending'); - setTimeout(() => { - setStatus('sent'); - setTimeout(() => setStatus('idle'), 3000); - (e.target as HTMLFormElement).reset(); - }, 1000); - }; - - return ( -
-
-
-

{c.title}

-

{c.subtitle}

-
- -
- {/* Contact info — 2 cols */} -
- -
- -
-
-
{t.common.email}
-
yogecoder@gmail.com
-
- -
- -
-
- -
-
-
{c.qqGroup}
- 1018282100 -
-
-
- - {/* Contact form — 3 cols */} -
-
- - -
-
- - -
-
- -