forked from maik/IPFS-portal
22 lines
538 B
TypeScript
22 lines
538 B
TypeScript
|
|
import type { Metadata, Viewport } from 'next';
|
||
|
|
import './globals.css';
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: 'MAOS IPFS Portal',
|
||
|
|
description: 'Decentralized storage management for your IPFS node',
|
||
|
|
};
|
||
|
|
|
||
|
|
export const viewport: Viewport = {
|
||
|
|
width: 'device-width',
|
||
|
|
initialScale: 1,
|
||
|
|
themeColor: '#020617',
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
||
|
|
return (
|
||
|
|
<html lang="en" className="dark">
|
||
|
|
<body className="min-h-screen antialiased">{children}</body>
|
||
|
|
</html>
|
||
|
|
);
|
||
|
|
}
|