import Link from 'next/link' import Appearance from './Appearance' import '~/styles/layout.css' export default function Layout({ children }: { children: React.ReactNode }) { return (

ashen.earth

code ramblings and technical oddities
{children}
) }