84 lines
3.1 KiB
TypeScript
84 lines
3.1 KiB
TypeScript
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 />
|
||
ул. Калинина, 107
|
||
</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>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div className="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
|
||
<p>© 2021 ВашДом. Все права защищены.</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;
|