diff --git a/package.json b/package.json index 23cb53f..d0933a9 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,7 @@ "dependencies": { "@auth0/nextjs-auth0": "^4.4.2", "@tailwindcss/vite": "^4.1.3", + "lucide-react": "^0.487.0", "next": "15.3.0", "react": "^19.1.0", "react-device-detect": "^2.2.3", diff --git a/src/app/(app)/layout.tsx b/src/app/(app)/layout.tsx index e2d5bb3..14e1ad0 100644 --- a/src/app/(app)/layout.tsx +++ b/src/app/(app)/layout.tsx @@ -14,7 +14,7 @@ export default function RootLayout({ const { isMobile, isSafari } = useDevice(); return ( -
+
{ + return ( +
+ + + + + + + + + + + + + + +
+ ); +}; + +export default Footer; diff --git a/src/lib/components/MobileNav.tsx b/src/lib/components/MobileNav.tsx deleted file mode 100644 index 50e8302..0000000 --- a/src/lib/components/MobileNav.tsx +++ /dev/null @@ -1,33 +0,0 @@ -"use client"; - -import React from "react"; -import { useRouter } from "next/navigation"; - -const Footer = () => { - const router = useRouter(); - - return ( -
- - - -
- ); -}; - -export default Footer; diff --git a/tsconfig.json b/tsconfig.json index c133409..9724f55 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -22,6 +22,6 @@ "@/*": ["./src/*"] } }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "src/lib/components/MobileNav.jsx"], "exclude": ["node_modules"] }