diff --git a/README.md b/README.md
index fecfa2d..ba3ff84 100644
--- a/README.md
+++ b/README.md
@@ -51,7 +51,7 @@ firebase deploy --only hosting -m "Deploy message"
### Features
- [x] Navigation
-- [ ] Mobile navigation
+- [x] Mobile navigation
- [x] Dark mode
- [ ] Projects Page
- [ ] Blog Page
diff --git a/components/theme/footer.tsx b/components/theme/footer.tsx
index dfd8b08..17c891d 100644
--- a/components/theme/footer.tsx
+++ b/components/theme/footer.tsx
@@ -62,7 +62,7 @@ export default function ThemeFooter() {
export function ThemeFooterMobile() {
return (
-
+
developed by @bedcodes
)
diff --git a/components/theme/nav.tsx b/components/theme/nav.tsx
index 37698b7..c789cfd 100644
--- a/components/theme/nav.tsx
+++ b/components/theme/nav.tsx
@@ -3,10 +3,11 @@ import Link from "next/link";
import { usePathname } from "next/navigation";
import { cn } from "@/lib/utils";
import { navigation } from "@/lib/navigation";
+import { Button } from "@/components/ui/button";
export default function ThemeNav() {
return (
-
+
{navigation.map((route) => (
-
@@ -31,18 +32,21 @@ function ThemeNavItem({ label, href }: { label: string; href: string }) {
>
{label}
+
);
}