import type { Metadata } from 'next' import { Inter } from 'next/font/google' import './globals.css' const inter = Inter({ subsets: ['latin'] }) export const metadata: Metadata = { title: 'NestJS - A progressive Node.js framework', description: 'A progressive Node.js framework for building efficient, reliable and scalable server-side applications.', keywords: ['nodejs', 'framework', 'typescript', 'scalable', 'backend', 'api'], metadataBase: new URL('https://nestjs.com'), alternates: { canonical: 'https://nestjs.com' }, openGraph: { title: 'NestJS - A progressive Node.js framework', description: 'A progressive Node.js framework for building efficient, reliable and scalable server-side applications.', url: 'https://nestjs.com', siteName: 'NestJS', type: 'website' }, twitter: { card: 'summary_large_image', title: 'NestJS - A progressive Node.js framework', description: 'A progressive Node.js framework for building efficient, reliable and scalable server-side applications.' } } export default function RootLayout({ children, }: { children: React.ReactNode }) { return (
{children}