2025 / apps /web /app /layout.tsx
daqc's picture
Initial commit
ad19202
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;
}