--- // Define props from Astro const { title, subTitle } = Astro.props; // Define TypeScript interface for props interface Props { title: string; subTitle: string; } ---

{title}

{subTitle}