Initial commit: Сисадмингрупп website

React + Vite + Tailwind, RU/EN, Hero/Services/About/Contact sections
This commit is contained in:
2026-03-14 01:02:02 +03:00
parent b3cb94d01b
commit abff3fa4cc
19 changed files with 2834 additions and 0 deletions

20
src/components/Footer.jsx Normal file
View 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>
)
}