--- import '@/styles/global.css'; import SEO from '@/components/seo/SEO.astro'; interface Props { title: string; description?: string; /** Path-only or absolute URL. Defaults to /images/og/default-og.jpg */ ogImage?: string; /** Override canonical URL. Default: current pathname */ canonical?: string; /** og:type — "website" for pages, "article" for blog */ ogType?: 'website' | 'article' | 'product'; /** Article published time (ISO) — only used when ogType=article */ publishedTime?: string; /** Article author — only used when ogType=article */ author?: string; /** Indexing policy. Default: 'index, follow' */ robots?: string; } const { title, description = "ดีล พลัส เทค - ระบบน้ำคุณภาพสูง ราคาโรงงาน", ogImage, canonical, ogType = 'website', publishedTime, author, robots, } = Astro.props; ---