diff --git a/apps/landing/src/app/(public)/_components/header.tsx b/apps/landing/src/app/(public)/_components/header.tsx
index f8ba542..a417350 100644
--- a/apps/landing/src/app/(public)/_components/header.tsx
+++ b/apps/landing/src/app/(public)/_components/header.tsx
@@ -1,11 +1,13 @@
'use client';
-import { Button, MenuIcon, XIcon } from '@components';
+import navigations from '@/data/navigations.json';
+import { Button } from '@components';
import { cn } from '@utils';
import Image from 'next/image';
import Link from 'next/link';
import { useRouter } from 'next/navigation';
import { useEffect, useState } from 'react';
+import { LuMenu, LuX } from 'react-icons/lu';
export function Header() {
const router = useRouter();
@@ -47,55 +49,39 @@ export function Header() {
{/* Desktop Navigation */}
-
+
{/* Mobile Menu Button */}
-
+
@@ -103,34 +89,16 @@ export function Header() {
{mobileMenuOpen && (
diff --git a/apps/landing/src/app/(public)/events/page.tsx b/apps/landing/src/app/(public)/events/page.tsx
new file mode 100644
index 0000000..eab6ef4
--- /dev/null
+++ b/apps/landing/src/app/(public)/events/page.tsx
@@ -0,0 +1,9 @@
+import { Metadata } from 'next';
+
+export const metadata: Metadata = {
+ title: 'IMPHNEN - Event',
+};
+
+export default function Page() {
+ return <>>;
+}
diff --git a/apps/landing/src/data/navigations.json b/apps/landing/src/data/navigations.json
new file mode 100644
index 0000000..b814646
--- /dev/null
+++ b/apps/landing/src/data/navigations.json
@@ -0,0 +1,10 @@
+[
+ {
+ "title": "Home",
+ "link": "/"
+ },
+ {
+ "title": "Event",
+ "link": "/events"
+ }
+]