import {ReactNode} from 'react' import {Providers} from '@/app/providers' import {Header} from '@/components/common/Header' import {Footer} from '@/components/common/Footer' import '@/styles/tailwind.css' export const metadata = { title: { default: 'Ryan Freeman - Software engineer based in Dublin, Ireland.', template: '%s - Ryan Freeman' }, description: 'Software engineer currently working in the aviation industry.', metadataBase: new URL('https://ryanfreeman.dev') } export default function RootLayout({children}: { children: ReactNode }) { return (