homepage fixed and merge

This commit is contained in:
Jae Young Ahn 2025-04-17 14:08:33 -07:00
parent cc7652fafe
commit 1b2f4b10ba
4 changed files with 15 additions and 8 deletions

View file

@ -22,17 +22,16 @@ const AppRouter = () => {
{/* <Header /> */}
<Navbar />
<Routes>
<Route
path="/"
element={
// <ProtectedRoute>
<>
<Hero />
// </ProtectedRoute>
<Services />
</>
}
/>
{/* <Services /> */}
<Route path="login" element={<LoginPage />} />
<Route
path="editor"
@ -44,7 +43,7 @@ const AppRouter = () => {
/>
<Route path="*" element={<PageNotFound />} />
</Routes>
<Services />
<Footer />
</div>
</BrowserRouter>