diff --git a/src/components/ui/cards/EducationCard.astro b/src/components/ui/cards/EducationCard.astro new file mode 100644 index 0000000..443b7d8 --- /dev/null +++ b/src/components/ui/cards/EducationCard.astro @@ -0,0 +1,63 @@ +--- +import { Icon } from 'astro-icon/components'; +import Logo from '@components/ui/logos/Logo.astro'; + +interface Props { + topic: string; + area: string; + date: string; + url: string; + logoUrlLight?: string; + logoUrlDark?: string; + logoIcon?: string; +} + +const { topic, area, date, url, logoUrlLight, logoUrlDark, logoIcon } = Astro.props; +--- + +
diff --git a/src/components/ui/cards/FeaturesCard.astro b/src/components/ui/cards/FeaturesCard.astro index a7ee143..8021f88 100644 --- a/src/components/ui/cards/FeaturesCard.astro +++ b/src/components/ui/cards/FeaturesCard.astro @@ -10,33 +10,26 @@ interface Props { const { title, description, url, icon } = Astro.props; -const baseClasses = 'smooth-reveal-2 group group-hover flex flex-col '; -const borderClasses = 'border border-neutral-100 dark:border-stone-500/20'; -const bgColorClasses = - 'bg-neutral-100/80 hover:bg-neutral-100 dark:bg-neutral-800/60 dark:hover:bg-neutral-800/90'; -const shadowClasses = 'shadow-xs hover:shadow-md dark:shadow-md dark:hover:shadow-lg'; const sizeClasses = 'h-30 w-100 md:w-[300px]'; --- -