first commit

This commit is contained in:
2026-06-21 14:17:24 +00:00
commit 4fbd7a515e
275 changed files with 45470 additions and 0 deletions

23
src/App.jsx Normal file
View File

@@ -0,0 +1,23 @@
import { BrowserRouter, Routes, Route } from 'react-router-dom'
import Layout from './components/Layout'
import Home from './pages/Home'
import About from './pages/About'
import Services from './pages/Services'
import Project from './pages/Project'
import Contact from './pages/Contact'
export default function App() {
return (
<BrowserRouter>
<Routes>
<Route element={<Layout />}>
<Route path="/" element={<Home />} />
<Route path="/about" element={<About />} />
<Route path="/service" element={<Services />} />
<Route path="/project" element={<Project />} />
<Route path="/contact" element={<Contact />} />
</Route>
</Routes>
</BrowserRouter>
)
}