Files
newsletter-hackernews/app/layout.tsx
2023-12-04 16:18:35 +01:00

28 lines
629 B
TypeScript

import { Analytics } from '@vercel/analytics/react';
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import './globals.css';
const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
keywords: 'newsletter, hackernews, technology, coding, programming, news'
};
export default function RootLayout({
children
}: {
children: React.ReactNode;
}) {
return (
<html lang='en'>
<body className={inter.className}>
{children}
<Analytics />
</body>
</html>
);
}