--- import '../styles/global.scss'; import Header from '../components/Header.astro'; import Footer from '../components/Footer.astro'; import { ViewTransitions } from 'astro:transitions'; interface Props { title?: string; } const { title } = Astro.props; --- {title || 'LBRY Tech'}