--- import '../styles/global.css'; import { Footer } from '../components/Footer'; import { Hero } from '../components/Hero'; import Analytics from '../components/Analytics.astro'; interface Props { title: string; description?: string; } const { title, description = "Technical problem solver's blog - practical insights and learning notes" } = Astro.props; ---