dissidua/app/layout.tsx

23 lines
451 B
TypeScript
Raw Permalink Normal View History

2023-12-18 07:55:02 -08:00
import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import './globals.css'
const inter = Inter({ subsets: ['latin'] })
export const metadata: Metadata = {
2023-12-18 08:57:42 -08:00
title: 'Dissidua Webmail',
description: 'A modern webmail client'
2023-12-18 07:55:02 -08:00
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
)
}