Files
porthole/apps/web/app/layout.tsx
OpenCode Test e1a64aa092 Initial commit
2025-12-24 10:50:10 -08:00

15 lines
353 B
TypeScript

import type { ReactNode } from "react";
import { getAppName } from "@tline/config";
export const metadata = {
title: getAppName()
};
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="en">
<body style={{ margin: 0, fontFamily: "system-ui, sans-serif" }}>{children}</body>
</html>
);
}