--- /** * TeamsHero - Hero section for Teams page * Pixel-perfect implementation based on Webflow design */ interface Props { title?: string; subtitle?: string; backgroundImage?: { url?: string; alt?: string; }; } const { title = "恩群大本營", subtitle = "Team members of Enchun", backgroundImage, } = Astro.props; // Determine if we have a background image const hasBackgroundImage = backgroundImage?.url; const bgImageUrl = backgroundImage?.url || ""; ---
{/* Background image overlay for text readability */} { hasBackgroundImage && (