Initial commit: Сисадмингрупп website
React + Vite + Tailwind, RU/EN, Hero/Services/About/Contact sections
This commit is contained in:
20
src/components/Footer.jsx
Normal file
20
src/components/Footer.jsx
Normal file
@@ -0,0 +1,20 @@
|
||||
import React from 'react'
|
||||
import { useLanguage } from '../contexts/LanguageContext.jsx'
|
||||
|
||||
export default function Footer() {
|
||||
const { t } = useLanguage()
|
||||
const year = new Date().getFullYear()
|
||||
|
||||
return (
|
||||
<footer className="bg-slate-900 text-slate-400 py-10">
|
||||
<div className="max-w-6xl mx-auto px-4 sm:px-6 flex flex-col md:flex-row items-center justify-between gap-4">
|
||||
<span className="text-white font-semibold">Сисадмингрупп</span>
|
||||
<span className="text-sm">{year} © {t('footer.rights')}</span>
|
||||
<div className="flex gap-6 text-sm">
|
||||
<a href="tel:+74953637476" className="hover:text-white transition-colors">+7 495 363-74-76</a>
|
||||
<a href="mailto:info@sag24.ru" className="hover:text-white transition-colors">info@sag24.ru</a>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user