From d075e0a7252e13778876a5d228afc36755dca2f9 Mon Sep 17 00:00:00 2001 From: II-Paulus-II Date: Fri, 22 Mar 2024 15:35:24 +0000 Subject: [PATCH] added three pages instead of using one page --- src/App.jsx | 13 +++++++++---- src/pages/Expertise.jsx | 18 ++++++++++++++++++ src/pages/Home.jsx | 17 +++++++++++++++++ src/pages/Projects.jsx | 18 ++++++++++++++++++ 4 files changed, 62 insertions(+), 4 deletions(-) create mode 100644 src/pages/Expertise.jsx create mode 100644 src/pages/Home.jsx create mode 100644 src/pages/Projects.jsx diff --git a/src/App.jsx b/src/App.jsx index bcb5ac4..29b5d14 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,19 +1,24 @@ /* ----- Third Party Imports ----- */ -import { BrowserRouter, Routes, Route, Link } from "react-router-dom"; +import { Routes, Route } from "react-router-dom"; /* ----- Project Imports ----- */ import "@/styles/App.css"; import Header from "@/components/Header.jsx"; import Footer from "@/components/Footer.jsx"; -import Content from "@/components/Content.jsx"; - +import HomePage from "@/pages/Home"; +import ExpertisePage from "@/pages/Expertise"; +import ProjectsPage from "@/pages/Projects"; function App() { return ( <>
- + + } /> + } /> + } /> +