Spaces:
Running
Running
| import type { Metadata } from "next"; | |
| import type { PropsWithChildren } from "react"; | |
| import "./globals.css"; | |
| import { config } from "@repo/config"; | |
| export const metadata: Metadata = { | |
| title: { | |
| absolute: config.appName, | |
| default: config.appName, | |
| template: `%s | ${config.appName}`, | |
| }, | |
| }; | |
| export default function RootLayout({ children }: PropsWithChildren) { | |
| return children; | |
| } | |