Files
mta-sign/mta-sign-ui/app/layout.tsx
2026-01-20 21:48:33 -05:00

20 lines
362 B
TypeScript

import './globals.css'
import type { Metadata } from 'next'
export const metadata: Metadata = {
title: 'Pi MTA Sign!',
description: 'Using a raspberry pi to display subway information!',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}