monorepo/web/Frontend/src/app/layout.tsx
2023-05-26 19:44:17 +03:00

22 lines
353 B
TypeScript

import './globals.css'
import { Inter } from 'next/font/google'
const inter = Inter({ subsets: ['latin'] })
export const metadata = {
title: 'Zilla',
description: 'Jira clone',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}