Files
conve-x/src/app/layout.tsx
T

22 lines
407 B
TypeScript
Raw Normal View History

2023-09-09 17:11:02 -05:00
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import './globals.css';
2023-09-09 17:02:12 -05:00
2023-09-09 17:11:02 -05:00
const inter = Inter({ subsets: ['latin'] });
2023-09-09 17:02:12 -05:00
export const metadata: Metadata = {
2023-09-09 17:11:02 -05:00
title: 'conveX',
};
2023-09-09 17:02:12 -05:00
export default function RootLayout({
children,
}: {
2023-09-09 17:11:02 -05:00
children: React.ReactNode;
2023-09-09 17:02:12 -05:00
}) {
return (
2023-09-09 17:11:02 -05:00
<html lang='en'>
2023-09-09 17:02:12 -05:00
<body className={inter.className}>{children}</body>
</html>
2023-09-09 17:11:02 -05:00
);
2023-09-09 17:02:12 -05:00
}