--- import '../styles/global.css'; import Header from '../components/Header.astro'; import Footer from '../components/Footer.astro'; interface Props { title: string; description?: string; } const { title, description = "LaForce IT - Home Lab & DevOps Insights" } = Astro.props; ---