mirror of
https://gitea.gofwd.group/sean/gunbuilder-next-tailwind.git
synced 2025-12-06 02:56:45 -05:00
43 lines
1.3 KiB
TypeScript
43 lines
1.3 KiB
TypeScript
import Link from 'next/link';
|
|
|
|
export default function AccountLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<div className="min-h-screen flex flex-col">
|
|
{/* Simple navbar with back button */}
|
|
<nav className="bg-white dark:bg-zinc-900 shadow-sm">
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<div className="flex justify-start h-16">
|
|
<div className="flex items-center">
|
|
<Link
|
|
href="/"
|
|
className="inline-flex items-center px-3 py-2 border border-transparent text-sm leading-4 font-medium rounded-md text-gray-500 dark:text-gray-300 hover:text-gray-700 dark:hover:text-gray-100 focus:outline-none transition"
|
|
>
|
|
<svg
|
|
className="h-5 w-5 mr-1"
|
|
fill="none"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="2"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
>
|
|
<path d="M10 19l-7-7m0 0l7-7m-7 7h18" />
|
|
</svg>
|
|
Back
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
{/* Main content */}
|
|
<main className="flex-1">
|
|
{children}
|
|
</main>
|
|
</div>
|
|
);
|
|
}
|