Files
smart-home-tablet/app/layout.tsx
Cosmo eb644ff341
All checks were successful
Deploy / deploy (push) Successful in 2m40s
feat: premium UI redesign — glassmorphism, gradient accents, ambient background
2026-04-22 18:38:31 +00:00

35 lines
1.0 KiB
TypeScript

import type { Metadata, Viewport } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "Smart Home Dashboard",
description: "Smart Home Tablet Dashboard",
manifest: "/manifest.json",
};
export const viewport: Viewport = {
width: "device-width",
initialScale: 1,
maximumScale: 1,
userScalable: false,
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="ru" className="dark">
<head>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="anonymous" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet" />
</head>
<body className="antialiased">{children}</body>
</html>
);
}