Skip to content

Commit

Permalink
Feat: New design (#7)
Browse files Browse the repository at this point in the history
* style: added the base-structure for the website

* Feat: Added Blog-functionality

* Feat: Added CV-page

* Chore: Added node_modules to gitignore

* Chore: Delete node_modules directory

* Style: Added devicons

* Style: Adjusted icons

* Feat: Remake of Blog, About Me and CV

* Fix: Removed Projects-page
  • Loading branch information
sebastianberge authored Jun 17, 2024
1 parent 3989783 commit 7526367
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import Navbar from "./components/Navbar";
import Footer from "./components/Footer";
import AboutMe from "./pages/AboutMe";
import Blog from "./pages/Blog";
import Projects from "./pages/Projects";
import PostDetail from "./pages/PostDetail";
import CV from "./pages/CV";

Expand All @@ -15,7 +14,6 @@ function App() {
<Routes>
<Route path="/" element={<AboutMe />} />
<Route path="/blog" element={<Blog />} />
<Route path="/projects" element={<Projects />} />
<Route path="/blog/:postId" element={<PostDetail />} />
<Route path="/cv" element={<CV />} />
</Routes>
Expand Down

0 comments on commit 7526367

Please sign in to comment.