--- import Navigation from '../components/Navigation.astro'; import Footer from '../components/Footer.astro'; import '../styles/global.css'; export interface Props { title: string; description?: string; } const { title, description = 'ForensicPathways - A comprehensive directory of digital forensics and incident response tools' } = Astro.props; ---