{
+ return (
+ <>
+
+
+ >
+
+ )
+}
\ No newline at end of file
diff --git a/src/front/pages/Contact.jsx b/src/front/pages/Contact.jsx
new file mode 100644
index 0000000000..e423b74e9c
--- /dev/null
+++ b/src/front/pages/Contact.jsx
@@ -0,0 +1,7 @@
+export const Contact = () => {
+ return (
+
+
Contact Test
+
+ )
+}
\ No newline at end of file
diff --git a/src/front/pages/Projects.jsx b/src/front/pages/Projects.jsx
new file mode 100644
index 0000000000..776ce659b5
--- /dev/null
+++ b/src/front/pages/Projects.jsx
@@ -0,0 +1,9 @@
+import { Projects } from "../components/Projects";
+
+export const Portfolio = () => {
+ return (
+ <>
+
+ >
+ )
+}
\ No newline at end of file
diff --git a/src/front/pages/Services.jsx b/src/front/pages/Services.jsx
new file mode 100644
index 0000000000..f09c3a5e0e
--- /dev/null
+++ b/src/front/pages/Services.jsx
@@ -0,0 +1,11 @@
+import { Services } from "../components/Services/Services"
+import { Process } from "../components/Process"
+
+export const ServicesPage = () => {
+ return (
+ <>
+
+
+ >
+ )
+}
\ No newline at end of file
diff --git a/src/front/routes.jsx b/src/front/routes.jsx
index 0557df6141..6d0b424430 100644
--- a/src/front/routes.jsx
+++ b/src/front/routes.jsx
@@ -1,30 +1,34 @@
// Import necessary components and functions from react-router-dom.
import {
- createBrowserRouter,
- createRoutesFromElements,
- Route,
+ createBrowserRouter,
+ createRoutesFromElements,
+ Route,
} from "react-router-dom";
import { Layout } from "./pages/Layout";
import { Home } from "./pages/Home";
-import { Single } from "./pages/Single";
-import { Demo } from "./pages/Demo";
+import { About } from "./pages/About";
+import { ServicesPage } from "./pages/Services";
+import { Portfolio } from "./pages/Projects";
+import { Contact } from "./pages/Contact";
export const router = createBrowserRouter(
- createRoutesFromElements(
+ createRoutesFromElements(
// CreateRoutesFromElements function allows you to build route elements declaratively.
// Create your routes here, if you want to keep the Navbar and Footer in all views, add your new routes inside the containing Route.
// Root, on the contrary, create a sister Route, if you have doubts, try it!
// Note: keep in mind that errorElement will be the default page when you don't get a route, customize that page to make your project more attractive.
// Note: The child paths of the Layout element replace the Outlet component with the elements contained in the "element" attribute of these child paths.
- // Root Route: All navigation will start from here.
- } errorElement={
Not found!
} >
+ // Root Route: All navigation will start from here.
+ } errorElement={
Not found!
} >
- {/* Nested Routes: Defines sub-routes within the BaseHome component. */}
- } />
- } /> {/* Dynamic route for single items */}
- } />
-
- )
+ {/* Nested Routes: Defines sub-routes within the BaseHome component. */}
+ } />
+ } />
+ } />
+ } />
+ } />
+
+ )
);
\ No newline at end of file