-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.tsx
More file actions
35 lines (31 loc) · 713 Bytes
/
Copy pathlayout.tsx
File metadata and controls
35 lines (31 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import './globals.css'
import { siteConfig } from '@/config/site'
const inter = Inter({ subsets: ['latin'] })
// Supported runtime for cloudflare workers
// export const runtime = 'edge'
export const metadata: Metadata = {
title: {
default: siteConfig.title,
template: `%s | ${siteConfig.title}`
},
description: siteConfig.description,
icons: [
{
url: '/logo.svg',
href: '/logo.svg'
}
]
}
export default function RootLayout({
children
}: Readonly<{
children: React.ReactNode
}>) {
return (
<html lang='en'>
<body className={inter.className}>{children}</body>
</html>
)
}