37 lines
1.3 KiB
TypeScript
37 lines
1.3 KiB
TypeScript
export default function Footer() {
|
||
|
||
return (
|
||
<footer className="bg-primary text-white py-12">
|
||
<div className="container mx-auto px-6">
|
||
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
|
||
<div>
|
||
<h4 className="text-xl mb-4">О нас</h4>
|
||
<p className="text-gray-400">
|
||
Мы создаем элегантную одежду для тех, кто ценит качество и стиль.
|
||
</p>
|
||
</div>
|
||
<div>
|
||
<h4 className="text-xl mb-4">Контакты</h4>
|
||
<p className="text-gray-400">
|
||
Email: info@brandstore.com<br />
|
||
Телефон: +7 (999) 123-45-67
|
||
</p>
|
||
</div>
|
||
<div>
|
||
<h4 className="text-xl mb-4">Подписаться</h4>
|
||
<div className="flex">
|
||
<input
|
||
type="email"
|
||
placeholder="Ваш email"
|
||
className="bg-white/10 px-4 py-2 rounded-l-full focus:outline-none"
|
||
/>
|
||
<button className="bg-accent px-6 rounded-r-full hover:bg-accent/90 transition-colors">
|
||
→
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</footer>
|
||
);
|
||
}
|