Spaces:
Paused
Paused
Create app/layout.tsx
Browse files- app/layout.tsx +18 -0
app/layout.tsx
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
export const metadata = {
|
| 2 |
+
title: 'Silent Stream | God-Level UI',
|
| 3 |
+
description: 'Zero-Disk Streaming Platform',
|
| 4 |
+
}
|
| 5 |
+
|
| 6 |
+
export default function RootLayout({
|
| 7 |
+
children,
|
| 8 |
+
}: {
|
| 9 |
+
children: React.ReactNode
|
| 10 |
+
}) {
|
| 11 |
+
return (
|
| 12 |
+
<html lang="en">
|
| 13 |
+
<body style={{ margin: 0, padding: 0, backgroundColor: '#0f172a', color: 'white' }}>
|
| 14 |
+
{children}
|
| 15 |
+
</body>
|
| 16 |
+
</html>
|
| 17 |
+
)
|
| 18 |
+
}
|