@@ -94,12 +99,12 @@ const NavbarLayout = ({ children }: NavbarLayoutProps) => {
tabIndex={0}
className="menu dropdown-content -ml-2 mt-4 w-36 gap-2 rounded-box bg-base-200 shadow-xl"
>
- {isAuthenticated && (
+ {isAuthenticated && routePath !== routePaths.home && (
Public
)}
- {navbarButtons()}
+ {routePath !== routePaths.home && navbarButtons()}
{isAuthenticated && (
<>
@@ -129,7 +134,9 @@ const NavbarLayout = ({ children }: NavbarLayoutProps) => {
-
{navbarButtons()}
+
+ {routePath !== routePaths.home && navbarButtons()}
+
{isAuthenticated && (
diff --git a/web/src/pages/HomePage/HomePage.tsx b/web/src/pages/HomePage/HomePage.tsx
index 016b2c7..5140edf 100644
--- a/web/src/pages/HomePage/HomePage.tsx
+++ b/web/src/pages/HomePage/HomePage.tsx
@@ -1,4 +1,4 @@
-import { mdiCompass, mdiContacts } from '@mdi/js'
+import { mdiCodeBraces, mdiContacts, mdiFileDocument } from '@mdi/js'
import Icon from '@mdi/react'
import type { TCountryCode } from 'countries-list'
import { getCountryData } from 'countries-list'
@@ -24,7 +24,7 @@ const HomePage = () => (
-
+
Hey 👋, I'm {`${process.env.FIRST_NAME}`}
@@ -39,17 +39,24 @@ const HomePage = () => (
.join(', ')}
-
+
-
- Explore
+
+ Projects
+
+
+
+ Résumé
Contact
diff --git a/web/src/pages/Resume/AdminResumePage/AdminResumePage.tsx b/web/src/pages/Resume/AdminResumePage/AdminResumePage.tsx
index 36c289b..a82ae30 100644
--- a/web/src/pages/Resume/AdminResumePage/AdminResumePage.tsx
+++ b/web/src/pages/Resume/AdminResumePage/AdminResumePage.tsx
@@ -5,7 +5,7 @@ import AdminResumeCell from 'src/components/Resume/AdminResumeCell/AdminResumeCe
const ResumePage = () => {
return (
<>
-
+
>
)