This App
+
+ Below is an overview of how this simple app is made and what
+ technologies are used. If you'd like to dive straight in, the full
+ project is available on my{" "}
+ GitHub.
+
+
+ I'm planning to integrate a simple blog as part of this app that will
+ dive into more specific implementation details so check back soon for
+ more!
+
+
+ >
+ );
+}
diff --git a/src/Client/src/routes.tsx b/src/Client/src/routes.tsx
index 0bca920..44ddd1e 100644
--- a/src/Client/src/routes.tsx
+++ b/src/Client/src/routes.tsx
@@ -2,6 +2,7 @@ import { createBrowserRouter } from "react-router-dom";
import Layout from "./pages/Layout";
import HomePage from "./pages/HomePage";
import ContactPage from "./pages/ContactPage";
+import AboutPage from "./pages/AboutPage";
const router = createBrowserRouter([
{
@@ -10,6 +11,7 @@ const router = createBrowserRouter([
children: [
{ index: true, element: },
{ path: "contact", element: },
+ { path: "about", element: },
],
},
]);