generated from muhtadeetaron/nextjs-template
feat(screens): implement bookmark and profile screens
This commit is contained in:
@ -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 }) {
|
||||
|
||||
Reference in New Issue
Block a user