Skip to content

Commit

Permalink
refactor: updated holo cards component name
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenbupe committed Aug 16, 2024
1 parent cd5827e commit 7bbe23f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import calmavitySvg from "../assets/svg/calmavity.svg?raw";
import nodelixSvg from "../assets/svg/nodelix.svg?raw";
import holocardLogoPatternSvg from "../assets/svg/holocard-logo-pattern.svg?raw";

export function ExpandableHoloJobCard({
export function ExpandableHoloJobCards({
animation,
bullet,
listClassName,
Expand Down
6 changes: 3 additions & 3 deletions src/sections/Jobs.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
import { Icon } from "astro-icon/components";
import ConicHeader from "../components/ConicHeader.astro";
import { ExpandableHoloJobCard } from "../components/ExpandableHoloJobCard";
import { ExpandableHoloJobCards } from "../components/ExpandableHoloJobCards";
import { Globe } from "../components/Globe";
import MeteorAnimation from "../components/MeteorAnimation.astro";
import { Particles } from "../components/Particles";
Expand Down Expand Up @@ -54,12 +54,12 @@ import Separator from "../components/Separator.astro";
Click on the cards below to learn more about the places I've worked
at, and a little bit about what I did there.
</p>
<ExpandableHoloJobCard
<ExpandableHoloJobCards
client:visible
listClassName="grid justify-center grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mt-24 w-fit self-center"
>
<MeteorAnimation slot="animation" />
<Icon name="tabler:chevron-right" slot="bullet" class="mt-1" />
</ExpandableHoloJobCard>
</ExpandableHoloJobCards>
</Section>
</div>

0 comments on commit 7bbe23f

Please sign in to comment.