material-you-react/app/layout.tsx

31 lines
616 B
TypeScript
Raw Normal View History

2024-01-25 22:43:42 +03:00
import "../src/styles/generics.css"
import "../src/styles/button.css"
import "../src/styles/ripple.css"
import {Metadata, Viewport} from "next";
export const metadata: Metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
}
2024-01-25 22:43:42 +03:00
export const viewport: Viewport = {
width: 'device-width',
initialScale: 1,
maximumScale: 1,
userScalable: false,
}
2024-01-25 22:43:42 +03:00
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>
{children}
</body>
</html>
)
}