13 lines
345 B
TypeScript
13 lines
345 B
TypeScript
import "@/app/globals.css";
|
|
export const metadata = {
|
|
title: "みんなのBettakuごはん | 当日受付管理",
|
|
};
|
|
|
|
export default function ManageDayLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<main className="min-h-screen bg-gray-50 text-gray-800 antialiased max-w-6xl mx-auto px-4 py-8">
|
|
{children}
|
|
</main>
|
|
);
|
|
}
|