app-cosmic-chameleon-glow/components/footer.tsx

47 lines
2.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Container } from "@/components/container";
import Link from "next/link";
import { Logo } from "@/components/Logo";
export function Footer() {
return (
<footer className="bg-slate-900 text-slate-300 py-16">
<Container>
<div className="grid grid-cols-1 md:grid-cols-4 gap-12 mb-12">
<div className="col-span-1 md:col-span-2">
<Logo />
<p className="mt-6 max-w-sm text-slate-400">
Ние вярваме, че здравето започва с правилната хидратация. Нашата мисия е да направим водородната вода достъпна за всеки дом.
</p>
</div>
<div>
<h4 className="text-white font-semibold mb-6">Бързи връзки</h4>
<ul className="space-y-4">
<li><Link href="/" className="hover:text-blue-400 transition-colors">Начало</Link></li>
<li><Link href="#" className="hover:text-blue-400 transition-colors">Продукти</Link></li>
<li><Link href="#" className="hover:text-blue-400 transition-colors">Наука</Link></li>
<li><Link href="#" className="hover:text-blue-400 transition-colors">Контакти</Link></li>
</ul>
</div>
<div>
<h4 className="text-white font-semibold mb-6">Контакти</h4>
<ul className="space-y-4 text-slate-400">
<li>Email: info@h2oplus.bg</li>
<li>Телефон: +359 888 123 456</li>
<li>Адрес: гр. София, бул. Витоша 100</li>
</ul>
</div>
</div>
<div className="border-t border-slate-800 pt-8 flex flex-col md:flex-row justify-between items-center gap-4">
<p className="text-sm">
© {new Date().getFullYear()} H2O+ Hydrogen Water. Всички права запазени.
</p>
<div className="flex gap-6 text-sm">
<Link href="#" className="hover:text-white transition-colors">Поверителност</Link>
<Link href="#" className="hover:text-white transition-colors">Общи условия</Link>
</div>
</div>
</Container>
</footer>
);
}