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

17
src/App.jsx Normal file
View File

@@ -0,0 +1,17 @@
import React from 'react'
import { LanguageProvider } from './contexts/LanguageContext.jsx'
import Navigation from './components/Navigation.jsx'
import Footer from './components/Footer.jsx'
import Home from './pages/Home.jsx'
export default function App() {
return (
<LanguageProvider>
<Navigation />
<main>
<Home />
</main>
<Footer />
</LanguageProvider>
)
}