mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 07:57:19 -05:00
16 lines
394 B
TypeScript
16 lines
394 B
TypeScript
import type { Metadata } from 'next';
|
||
import './globals.css';
|
||
|
||
export const metadata: Metadata = {
|
||
title: 'BlackRoad OS – BR‑95 Edition',
|
||
description: 'BlackRoad OS retro desktop rebuilt as modern Next.js components.',
|
||
};
|
||
|
||
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
||
return (
|
||
<html lang="en">
|
||
<body>{children}</body>
|
||
</html>
|
||
);
|
||
}
|