Initial commit

This commit is contained in:
Dan Dobos
2026-02-20 16:22:48 +01:00
commit 77023919df
73 changed files with 12378 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
import { createBrowserRouter } from "react-router";
import { Home } from "./pages/Home";
import { Services } from "./pages/Services";
import { About } from "./pages/About";
import { Gallery } from "./pages/Gallery";
import { Contact } from "./pages/Contact";
import { Layout } from "./components/Layout";
export const router = createBrowserRouter([
{
path: "/",
Component: Layout,
children: [
{ index: true, Component: Home },
{ path: "services", Component: Services },
{ path: "about", Component: About },
{ path: "gallery", Component: Gallery },
{ path: "contact", Component: Contact },
],
},
]);