--- import Footer from '@/components/layout/Footer.astro'; import Navbar from '@/components/layout/Navbar.astro'; import { resolveSeo } from '@/lib/seo'; import BaseLayout from '@/layouts/BaseLayout.astro'; interface Props { currentPath: string; description?: string; title?: string; } const { currentPath, description, title } = Astro.props; const seo = title && description ? resolveSeo({ description, path: currentPath, title }) : undefined; ---