Files
altbin.dev/app/dashboard/layout.tsx
T

9 lines
224 B
TypeScript
Raw Normal View History

2025-08-20 14:14:33 +02:00
import type { Metadata } from 'next';
export const metadata: Metadata = {
title: 'AltBin - Dashboard',
};
export default function DashboardLayout({ children }: { children: React.ReactNode }) {
return <>{children}</>;
}