Files
page-builder/src/app/layout.tsx
T
jaybe a6ef5f01cd
CI / pr_and_merge (push) Blocked by required conditions
CI / test (push) Has been cancelled
에디터 인라인/속성 패널 리팩터링 및 폼 전송 기본 기능 추가
2025-11-20 00:53:39 +09:00

19 lines
431 B
TypeScript

import "../styles/globals.css";
import "../styles/builder.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>
);
}