Amolith's collection of Skills for agents like Crush/Claude Code
1export const metadata = { title: 'Next.js App Router Fixture' }; 2 3export default function RootLayout({ children }) { 4 return ( 5 <html lang="en"> 6 <body> 7 {children} 8 </body> 9 </html> 10 ); 11}