mirror of
https://github.com/vercel/commerce.git
synced 2025-05-15 22:16:58 +00:00
15 lines
325 B
TypeScript
15 lines
325 B
TypeScript
import './../../globals.css';
|
|
|
|
export const metadata = {
|
|
title: `Studio | ${process.env.SITE_NAME}`,
|
|
description: 'KM Storefront studio admin interface.'
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en">
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|