import type { Metadata } from 'next' import './globals.css' export const metadata: Metadata = { title: 'Emil Shanayev — DevOps & Backend Engineer', description: 'Portfolio of Emil Shanayev — DevOps Engineer and Backend Developer specializing in Python/FastAPI, Kubernetes, Docker, and Linux infrastructure.', keywords: ['DevOps', 'Backend', 'Python', 'Go', 'Kubernetes', 'Docker', 'FastAPI'], authors: [{ name: 'Emil Shanayev' }], } export default function RootLayout({ children }: { children: React.ReactNode }) { return ( {children} ) }