--- interface Props { title: string; description: string; } const { title = "Andrew Lee", description = "Andrew Lee Website" } = Astro.props; import Navbar from '../components/Navbar.svelte'; const date = new Date(); ---