--- import '../styles/styles.css'; import { ViewTransitions } from 'astro:transitions'; import Footer from '../components/Footer.astro'; import Nav from '../components/Nav.astro'; export interface Props { title: string; } const { title } = Astro.props as Props; --- {title}