18 lines
399 B
TypeScript
18 lines
399 B
TypeScript
import "../styles/globals.css";
|
|
import type { ReactNode } from "react";
|
|
|
|
export const metadata = {
|
|
title: "Page Builder",
|
|
description: "No-code single page builder",
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: ReactNode }) {
|
|
return (
|
|
<html lang="ko">
|
|
<body className="min-h-screen bg-slate-950 text-slate-50">
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|