--- import '../styles/global.css'; export interface Props { title?: string; description?: string; lang?: string; charset?: string; } const { title = 'Light Code', description = 'A lightweight code editor', lang = 'zh-CN', charset = 'UTF-8' } = Astro.props; ---