package main // y2kHeadingBaseClass returns the per-level Tailwind sizing classes. func y2kHeadingBaseClass(level int) string { switch level { case 1: return "text-5xl md:text-6xl" case 2: return "text-3xl md:text-4xl" case 3: return "text-2xl" case 4: return "text-xl" case 5: return "text-lg" case 6: return "text-base" default: return "text-3xl md:text-4xl" } } // y2kHeadingComponent renders a heading with chrome stroke + drop shadow. templ y2kHeadingComponent(level int, text, textClass string) { switch level { case 1: