Seed: services template (18 files)
This commit is contained in:
+24
@@ -0,0 +1,24 @@
|
|||||||
|
import { BrowserRouter, Routes, Route } from "react-router-dom";
|
||||||
|
import IndexPage from "@/pages/Index";
|
||||||
|
import ServicesPage from "@/pages/Services";
|
||||||
|
import CaseStudyPage from "@/pages/CaseStudy";
|
||||||
|
import TeamPage from "@/pages/Team";
|
||||||
|
import ContactPage from "@/pages/Contact";
|
||||||
|
import BlogPage from "@/pages/Blog";
|
||||||
|
|
||||||
|
function App() {
|
||||||
|
return (
|
||||||
|
<BrowserRouter>
|
||||||
|
<Routes>
|
||||||
|
<Route path="/" element={<IndexPage />} />
|
||||||
|
<Route path="/services" element={<ServicesPage />} />
|
||||||
|
<Route path="/case-study" element={<CaseStudyPage />} />
|
||||||
|
<Route path="/team" element={<TeamPage />} />
|
||||||
|
<Route path="/contact" element={<ContactPage />} />
|
||||||
|
<Route path="/blog" element={<BlogPage />} />
|
||||||
|
</Routes>
|
||||||
|
</BrowserRouter>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default App;
|
||||||
Reference in New Issue
Block a user