import type { Metadata } from 'next'; const BASE_URL = 'https://ayrisai.xyz'; export const metadata: Metadata = { title: 'Developer Cheatsheets & Quick Reference | ayris.tech', description: 'Free developer cheatsheets for Git, Next.js App Router, Docker, TypeScript, Python, SQL, and more. Quick-copy command references used in ayris.tech YouTube tutorials.', keywords: [ 'developer cheatsheet', 'Git commands cheatsheet', 'Next.js cheatsheet', 'Docker commands', 'TypeScript quick reference', 'SQL cheatsheet', 'programming reference card', 'ayris.tech', ], alternates: { canonical: `${BASE_URL}/en/cheatsheets`, }, openGraph: { title: 'Developer Cheatsheets & Quick Reference | ayris.tech', description: 'Free copy-paste developer cheatsheets for Git, Next.js, Docker, TypeScript, and more.', url: `${BASE_URL}/en/cheatsheets`, type: 'website', }, }; export default function CheatsheetsLayout({ children }: { children: React.ReactNode }) { return ( <>