feat(screens): implement bookmark and profile screens

This commit is contained in:
shafin-r
2025-07-15 21:20:26 +06:00
parent 71eeafdaee
commit aa7bc67dc9
6 changed files with 323 additions and 26 deletions

View File

@ -5,13 +5,19 @@ import Link from "next/link";
import { ReactNode } from "react";
import { usePathname } from "next/navigation";
import clsx from "clsx";
import { House, LayoutGrid, Bookmark, CircleUser } from "lucide-react";
import {
House,
LayoutGrid,
Bookmark,
CircleUser,
Settings,
} from "lucide-react";
const tabs = [
{ name: "Home", href: "/home", component: <House size={30} /> },
{ name: "Unit", href: "/unit", component: <LayoutGrid size={30} /> },
{ name: "Bookmark", href: "/bookmark", component: <Bookmark size={30} /> },
{ name: "Profile", href: "/profile", component: <CircleUser size={30} /> },
{ name: "Settings", href: "/settings", component: <Settings size={30} /> },
];
export default function TabsLayout({ children }: { children: ReactNode }) {