diff --git a/src/components/ui/sections/HeroSection.astro b/src/components/ui/sections/HeroSection.astro index 844352b..e07d4d4 100644 --- a/src/components/ui/sections/HeroSection.astro +++ b/src/components/ui/sections/HeroSection.astro @@ -15,7 +15,10 @@ interface Props { secondaryBtnURL?: string; src?: any; alt?: string; + rounded?: boolean; } + +const roundedClasses = Astro.props.rounded ? "rounded-xl" : null; ---