--- import '../../assets/css/tailwind.pcss' import Navbar from '../components/Navbar.astro' export interface Props { title: string; } const { title } = Astro.props; interface Link { title: string, href: string, } const footerLinks = [ { title: 'About', href: '/', }, { title: 'Blog', href: '/blog', }, { title: 'Talks', href: '/talks', }, { title: 'Daily list', href: '/daily', }, ] --- {title}

{title}