Initial commit: YourHouse project

This commit is contained in:
Bivekich
2025-06-26 05:37:29 +03:00
commit 827e8d5ab2
73 changed files with 9365 additions and 0 deletions

92
src/components/Footer.tsx Normal file
View File

@ -0,0 +1,92 @@
import Link from 'next/link';
const Footer = () => {
return (
<footer className="bg-gray-900 text-white py-12">
<div className="container mx-auto px-4">
<div className="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 className="text-xl font-bold mb-4">ВашДом</h3>
<p className="text-gray-400">
Современное строительство домов и коттеджей под ключ. Индивидуальные проекты, качественные материалы, профессиональная команда.
</p>
</div>
<div>
<h4 className="text-lg font-bold mb-4">Навигация</h4>
<ul className="space-y-2">
<li>
<Link href="#about" className="text-gray-400 hover:text-white transition-colors">
О компании
</Link>
</li>
<li>
<Link href="#projects" className="text-gray-400 hover:text-white transition-colors">
Проекты
</Link>
</li>
<li>
<Link href="#services" className="text-gray-400 hover:text-white transition-colors">
Услуги
</Link>
</li>
<li>
<Link href="#reviews" className="text-gray-400 hover:text-white transition-colors">
Отзывы
</Link>
</li>
<li>
<Link href="#contacts" className="text-gray-400 hover:text-white transition-colors">
Контакты
</Link>
</li>
</ul>
</div>
<div>
<h4 className="text-lg font-bold mb-4">Контакты</h4>
<ul className="space-y-2 text-gray-400">
<li>+7 (900) 123-45-67</li>
<li>info@vashdom.ru</li>
<li>
г. Москва,<br />
ул. Новая, 10
</li>
</ul>
</div>
<div>
<h4 className="text-lg font-bold mb-4">Мы в соцсетях</h4>
<div className="flex space-x-4">
<a
href="#"
className="text-gray-400 hover:text-white transition-colors"
target="_blank"
rel="noopener noreferrer"
>
Telegram
</a>
<a
href="#"
className="text-gray-400 hover:text-white transition-colors"
target="_blank"
rel="noopener noreferrer"
>
WhatsApp
</a>
</div>
</div>
</div>
<div className="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
<p>© 2025 ВашДом. Все права защищены.</p>
<p className="mt-2 text-sm">
Разработка сайта <a href="https://biveki.ru/" target="_blank" rel="noopener noreferrer" className="underline hover:text-white">BivekiGroup</a>
</p>
</div>
</div>
</footer>
);
};
export default Footer;