diff --git a/src/App.tsx b/src/App.tsx
index 09763ab..87e49a9 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -1,10 +1,12 @@
import { Routes, Route } from 'react-router-dom';
import HomePage from './pages/HomePage';
+import BlogPage from './pages/BlogPage';
export default function App() {
return (
} />
-
+ } />
+
);
}