337 lines
16 KiB
TypeScript
337 lines
16 KiB
TypeScript
// /app/page.tsx
|
|
|
|
'use client'
|
|
|
|
import { useState } from 'react'
|
|
import {
|
|
Dialog,
|
|
DialogBackdrop,
|
|
DialogPanel,
|
|
Menu,
|
|
MenuButton,
|
|
MenuItem,
|
|
MenuItems,
|
|
TransitionChild,
|
|
} from '@headlessui/react'
|
|
import {
|
|
Bars3Icon,
|
|
BellIcon,
|
|
CalendarIcon,
|
|
ChartPieIcon,
|
|
Cog6ToothIcon,
|
|
DocumentDuplicateIcon,
|
|
FolderIcon,
|
|
HomeIcon,
|
|
UsersIcon,
|
|
XMarkIcon,
|
|
} from '@heroicons/react/24/outline'
|
|
import { ChevronDownIcon, MagnifyingGlassIcon } from '@heroicons/react/20/solid'
|
|
|
|
const navigation = [
|
|
{ name: 'Dashboard', href: '#', icon: HomeIcon, current: true },
|
|
{ name: 'Team', href: '#', icon: UsersIcon, current: false },
|
|
{ name: 'Projects', href: '#', icon: FolderIcon, current: false },
|
|
{ name: 'Calendar', href: '#', icon: CalendarIcon, current: false },
|
|
{ name: 'Documents', href: '#', icon: DocumentDuplicateIcon, current: false },
|
|
{ name: 'Reports', href: '#', icon: ChartPieIcon, current: false },
|
|
]
|
|
|
|
const teams = [
|
|
{ id: 1, name: 'Heroicons', href: '#', initial: 'H', current: false },
|
|
{ id: 2, name: 'Tailwind Labs', href: '#', initial: 'T', current: false },
|
|
{ id: 3, name: 'Workcation', href: '#', initial: 'W', current: false },
|
|
]
|
|
|
|
const userNavigation = [
|
|
{ name: 'Your profile', href: '#' },
|
|
{ name: 'Sign out', href: '#' },
|
|
]
|
|
|
|
function classNames(...classes: Array<string | boolean | null | undefined>) {
|
|
return classes.filter(Boolean).join(' ')
|
|
}
|
|
|
|
export default function Home() {
|
|
const [sidebarOpen, setSidebarOpen] = useState(false)
|
|
|
|
return (
|
|
<div className="min-h-screen bg-white dark:bg-gray-900">
|
|
{/* Mobile Sidebar */}
|
|
<Dialog open={sidebarOpen} onClose={setSidebarOpen} className="relative z-50 lg:hidden">
|
|
<DialogBackdrop
|
|
transition
|
|
className="fixed inset-0 bg-gray-900/80 transition-opacity duration-300 ease-linear data-closed:opacity-0"
|
|
/>
|
|
|
|
<div className="fixed inset-0 flex">
|
|
<DialogPanel
|
|
transition
|
|
className="relative mr-16 flex w-full max-w-xs flex-1 transform transition duration-300 ease-in-out data-closed:-translate-x-full"
|
|
>
|
|
<TransitionChild>
|
|
<div className="absolute top-0 left-full flex w-16 justify-center pt-5 duration-300 ease-in-out data-closed:opacity-0">
|
|
<button type="button" onClick={() => setSidebarOpen(false)} className="-m-2.5 p-2.5">
|
|
<span className="sr-only">Close sidebar</span>
|
|
<XMarkIcon aria-hidden="true" className="size-6 text-white" />
|
|
</button>
|
|
</div>
|
|
</TransitionChild>
|
|
|
|
{/* Sidebar mobil */}
|
|
<div className="relative flex grow flex-col gap-y-5 overflow-y-auto bg-white px-6 pb-4 dark:bg-gray-900 dark:ring dark:ring-white/10 dark:before:pointer-events-none dark:before:absolute dark:before:inset-0 dark:before:bg-black/10">
|
|
<div className="relative flex h-16 shrink-0 items-center">
|
|
<span className="text-lg font-semibold text-gray-900 dark:text-white">Inventar</span>
|
|
</div>
|
|
<nav className="relative flex flex-1 flex-col">
|
|
<ul role="list" className="flex flex-1 flex-col gap-y-7">
|
|
<li>
|
|
<ul role="list" className="-mx-2 space-y-1">
|
|
{navigation.map((item) => (
|
|
<li key={item.name}>
|
|
<a
|
|
href={item.href}
|
|
className={classNames(
|
|
item.current
|
|
? 'bg-gray-50 text-indigo-600 dark:bg-white/5 dark:text-white'
|
|
: 'text-gray-700 hover:bg-gray-50 hover:text-indigo-600 dark:text-gray-400 dark:hover:bg-white/5 dark:hover:text-white',
|
|
'group flex gap-x-3 rounded-md p-2 text-sm/6 font-semibold',
|
|
)}
|
|
>
|
|
<item.icon
|
|
aria-hidden="true"
|
|
className={classNames(
|
|
item.current
|
|
? 'text-indigo-600 dark:text-white'
|
|
: 'text-gray-400 group-hover:text-indigo-600 dark:group-hover:text-white',
|
|
'size-6 shrink-0',
|
|
)}
|
|
/>
|
|
{item.name}
|
|
</a>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</li>
|
|
<li>
|
|
<div className="text-xs/6 font-semibold text-gray-400">Your teams</div>
|
|
<ul role="list" className="-mx-2 mt-2 space-y-1">
|
|
{teams.map((team) => (
|
|
<li key={team.name}>
|
|
<a
|
|
href={team.href}
|
|
className={classNames(
|
|
team.current
|
|
? 'bg-gray-50 text-indigo-600 dark:bg-white/5 dark:text-white'
|
|
: 'text-gray-700 hover:bg-gray-50 hover:text-indigo-600 dark:text-gray-400 dark:hover:bg-white/5 dark:hover:text-white',
|
|
'group flex gap-x-3 rounded-md p-2 text-sm/6 font-semibold',
|
|
)}
|
|
>
|
|
<span
|
|
className={classNames(
|
|
team.current
|
|
? 'border-indigo-600 text-indigo-600 dark:border-white/20 dark:text-white'
|
|
: 'border-gray-200 text-gray-400 group-hover:border-indigo-600 group-hover:text-indigo-600 dark:border-white/10 dark:group-hover:border-white/20 dark:group-hover:text-white',
|
|
'flex size-6 shrink-0 items-center justify-center rounded-lg border bg-white text-[0.625rem] font-medium dark:bg-white/5',
|
|
)}
|
|
>
|
|
{team.initial}
|
|
</span>
|
|
<span className="truncate">{team.name}</span>
|
|
</a>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</li>
|
|
<li className="mt-auto">
|
|
<a
|
|
href="#"
|
|
className="group -mx-2 flex gap-x-3 rounded-md p-2 text-sm/6 font-semibold text-gray-700 hover:bg-gray-50 hover:text-indigo-600 dark:text-gray-300 dark:hover:bg-white/5 dark:hover:text-white"
|
|
>
|
|
<Cog6ToothIcon
|
|
aria-hidden="true"
|
|
className="size-6 shrink-0 text-gray-400 group-hover:text-indigo-600 dark:group-hover:text-white"
|
|
/>
|
|
Settings
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
</DialogPanel>
|
|
</div>
|
|
</Dialog>
|
|
|
|
{/* Sidebar Desktop */}
|
|
<div className="hidden bg-gray-900 lg:fixed lg:inset-y-0 lg:z-50 lg:flex lg:w-72 lg:flex-col">
|
|
<div className="flex grow flex-col gap-y-5 overflow-y-auto border-r border-gray-200 bg-white px-6 pb-4 dark:border-white/10 dark:bg-black/10">
|
|
<div className="flex h-16 shrink-0 items-center">
|
|
<span className="text-lg font-semibold text-gray-900 dark:text-white">Inventar</span>
|
|
</div>
|
|
<nav className="flex flex-1 flex-col">
|
|
<ul role="list" className="flex flex-1 flex-col gap-y-7">
|
|
<li>
|
|
<ul role="list" className="-mx-2 space-y-1">
|
|
{navigation.map((item) => (
|
|
<li key={item.name}>
|
|
<a
|
|
href={item.href}
|
|
className={classNames(
|
|
item.current
|
|
? 'bg-gray-50 text-indigo-600 dark:bg-white/5 dark:text-white'
|
|
: 'text-gray-700 hover:bg-gray-50 hover:text-indigo-600 dark:text-gray-400 dark:hover:bg-white/5 dark:hover:text-white',
|
|
'group flex gap-x-3 rounded-md p-2 text-sm/6 font-semibold',
|
|
)}
|
|
>
|
|
<item.icon
|
|
aria-hidden="true"
|
|
className={classNames(
|
|
item.current
|
|
? 'text-indigo-600 dark:text-white'
|
|
: 'text-gray-400 group-hover:text-indigo-600 dark:group-hover:text-white',
|
|
'size-6 shrink-0',
|
|
)}
|
|
/>
|
|
{item.name}
|
|
</a>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</li>
|
|
<li>
|
|
<div className="text-xs/6 font-semibold text-gray-400">Your teams</div>
|
|
<ul role="list" className="-mx-2 mt-2 space-y-1">
|
|
{teams.map((team) => (
|
|
<li key={team.name}>
|
|
<a
|
|
href={team.href}
|
|
className={classNames(
|
|
team.current
|
|
? 'bg-gray-50 text-indigo-600 dark:bg-white/5 dark:text-white'
|
|
: 'text-gray-700 hover:bg-gray-50 hover:text-indigo-600 dark:text-gray-400 dark:hover:bg-white/5 dark:hover:text-white',
|
|
'group flex gap-x-3 rounded-md p-2 text-sm/6 font-semibold',
|
|
)}
|
|
>
|
|
<span
|
|
className={classNames(
|
|
team.current
|
|
? 'border-indigo-600 text-indigo-600 dark:border-white/20 dark:text-white'
|
|
: 'border-gray-200 text-gray-400 group-hover:border-indigo-600 group-hover:text-indigo-600 dark:border-white/10 dark:group-hover:border-white/20 dark:group-hover:text-white',
|
|
'flex size-6 shrink-0 items-center justify-center rounded-lg border bg-white text-[0.625rem] font-medium dark:bg-white/5',
|
|
)}
|
|
>
|
|
{team.initial}
|
|
</span>
|
|
<span className="truncate">{team.name}</span>
|
|
</a>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</li>
|
|
<li className="mt-auto">
|
|
<a
|
|
href="#"
|
|
className="group -mx-2 flex gap-x-3 rounded-md p-2 text-sm/6 font-semibold text-gray-700 hover:bg-gray-50 hover:text-indigo-600 dark:text-gray-300 dark:hover:bg-white/5 dark:hover:text-white"
|
|
>
|
|
<Cog6ToothIcon
|
|
aria-hidden="true"
|
|
className="size-6 shrink-0 text-gray-400 group-hover:text-indigo-600 dark:group-hover:text-white"
|
|
/>
|
|
Settings
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Topbar + Content */}
|
|
<div className="lg:pl-72">
|
|
<div className="sticky top-0 z-40 flex h-16 shrink-0 items-center gap-x-4 border-b border-gray-200 bg-white px-4 shadow-xs sm:gap-x-6 sm:px-6 lg:px-8 dark:border-white/10 dark:bg-gray-900 dark:shadow-none">
|
|
<button
|
|
type="button"
|
|
onClick={() => setSidebarOpen(true)}
|
|
className="-m-2.5 p-2.5 text-gray-700 hover:text-gray-900 lg:hidden dark:text-gray-400 dark:hover:text-white"
|
|
>
|
|
<span className="sr-only">Open sidebar</span>
|
|
<Bars3Icon aria-hidden="true" className="size-6" />
|
|
</button>
|
|
|
|
<div aria-hidden="true" className="h-6 w-px bg-gray-200 lg:hidden dark:bg-white/10" />
|
|
|
|
<div className="flex flex-1 gap-x-4 self-stretch lg:gap-x-6">
|
|
<form action="#" method="GET" className="grid flex-1 grid-cols-1">
|
|
<input
|
|
name="search"
|
|
placeholder="Search"
|
|
aria-label="Search"
|
|
className="col-start-1 row-start-1 block size-full bg-white pl-8 text-base text-gray-900 outline-hidden placeholder:text-gray-400 sm:text-sm/6 dark:bg-gray-900 dark:text-white dark:placeholder:text-gray-500"
|
|
/>
|
|
<MagnifyingGlassIcon
|
|
aria-hidden="true"
|
|
className="pointer-events-none col-start-1 row-start-1 size-5 self-center text-gray-400"
|
|
/>
|
|
</form>
|
|
<div className="flex items-center gap-x-4 lg:gap-x-6">
|
|
<button
|
|
type="button"
|
|
className="-m-2.5 p-2.5 text-gray-400 hover:text-gray-500 dark:hover:text-white"
|
|
>
|
|
<span className="sr-only">View notifications</span>
|
|
<BellIcon aria-hidden="true" className="size-6" />
|
|
</button>
|
|
|
|
<div aria-hidden="true" className="hidden lg:block lg:h-6 lg:w-px lg:bg-gray-200 dark:lg:bg-white/10" />
|
|
|
|
{/* Profile dropdown */}
|
|
<Menu as="div" className="relative">
|
|
<MenuButton className="relative flex items-center">
|
|
<span className="absolute -inset-1.5" />
|
|
<span className="sr-only">Open user menu</span>
|
|
<img
|
|
alt=""
|
|
src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
|
|
className="size-8 rounded-full bg-gray-50 outline -outline-offset-1 outline-black/5 dark:bg-gray-800 dark:outline-white/10"
|
|
/>
|
|
<span className="hidden lg:flex lg:items-center">
|
|
<span aria-hidden="true" className="ml-4 text-sm/6 font-semibold text-gray-900 dark:text-white">
|
|
Tom Cook
|
|
</span>
|
|
<ChevronDownIcon aria-hidden="true" className="ml-2 size-5 text-gray-400 dark:text-gray-500" />
|
|
</span>
|
|
</MenuButton>
|
|
<MenuItems
|
|
transition
|
|
className="absolute right-0 z-10 mt-2.5 w-32 origin-top-right rounded-md bg-white py-2 shadow-lg outline-1 outline-gray-900/5 transition data-closed:scale-95 data-closed:transform data-closed:opacity-0 data-enter:duration-100 data-enter:ease-out data-leave:duration-75 data-leave:ease-in dark:bg-gray-800 dark:shadow-none dark:-outline-offset-1 dark:outline-white/10"
|
|
>
|
|
{userNavigation.map((item) => (
|
|
<MenuItem key={item.name}>
|
|
<a
|
|
href={item.href}
|
|
className="block px-3 py-1 text-sm/6 text-gray-900 data-focus:bg-gray-50 data-focus:outline-hidden dark:text-white dark:data-focus:bg-white/5"
|
|
>
|
|
{item.name}
|
|
</a>
|
|
</MenuItem>
|
|
))}
|
|
</MenuItems>
|
|
</Menu>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<main className="py-10">
|
|
<div className="px-4 sm:px-6 lg:px-8">
|
|
{/* Hier kommt dein eigentlicher Inhalt hin */}
|
|
<h1 className="text-2xl font-semibold text-gray-900 dark:text-white">
|
|
Geräte-Inventar
|
|
</h1>
|
|
<p className="mt-2 text-sm text-gray-600 dark:text-gray-400">
|
|
Hier könntest du gleich als Nächstes eine Übersicht deiner Geräte einbauen.
|
|
</p>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|