import type { Metadata } from 'next' import { Inter } from 'next/font/google' import Link from 'next/link' import './globals.css' const inter = Inter({ subsets: ['latin'] }) export const metadata: Metadata = { title: { template: '%s | Blog & Portofoliu', default: 'Blog & Portofoliu', }, description: 'Blog personal despre dezvoltare web și design', metadataBase: new URL('http://localhost:3000'), authors: [{ name: 'Nume Autor' }], keywords: ['blog', 'dezvoltare web', 'nextjs', 'react', 'typescript'], openGraph: { type: 'website', locale: 'ro_RO', siteName: 'Blog & Portofoliu', }, robots: { index: true, follow: true, }, } export default function RootLayout({ children, }: { children: React.ReactNode }) { return (