diff --git a/src/components/Bio/Bio.astro b/src/components/Bio/Bio.astro index 4ddd2da..62c000a 100644 --- a/src/components/Bio/Bio.astro +++ b/src/components/Bio/Bio.astro @@ -8,15 +8,15 @@ export type Props = { description: string; icon: string; }; -const props = Astro.props; +const { name, description, icon } = Astro.props; ---
- {`${props.name}'s -

{props.name}

+ {`${name}'s +

{name}

-

{props.description}

+

{description}