feat: cloudflare -> netlify

This commit is contained in:
Cory Dransfeldt 2024-11-29 15:12:47 -08:00
parent a7e0b36d82
commit a74ea3644d
No known key found for this signature in database
41 changed files with 2021 additions and 2395 deletions

View file

@ -17,6 +17,7 @@ const {
IconCoffee,
IconDeviceWatch,
IconHeartHandshake,
IconCalendarPlus,
} = icons;
const { icon, className } = Astro.props;
const iconComponents = {
@ -35,6 +36,7 @@ const iconComponents = {
coffee: IconCoffee,
"device-watch": IconDeviceWatch,
"heart-handshake": IconHeartHandshake,
"calendar-plus": IconCalendarPlus,
};
const SelectedIcon = iconComponents[icon?.toLowerCase()] || null;
---