github link
This commit is contained in:
parent
4d57242492
commit
e29fce9ce9
3 changed files with 42 additions and 40 deletions
38
src/components/Socials.astro
Normal file
38
src/components/Socials.astro
Normal file
|
@ -0,0 +1,38 @@
|
|||
---
|
||||
import { toFastProperties } from '../../.yarn/releases/yarn-3.3.0.cjs'
|
||||
|
||||
export interface Props {
|
||||
additionalClass: string
|
||||
}
|
||||
const { additionalClass } = Astro.props
|
||||
---
|
||||
|
||||
<ul class={`socials ${additionalClass}`}>
|
||||
<li class='mastodon'>
|
||||
<a
|
||||
href='https://chaos.social/@HIP22'
|
||||
title='HiP 2022 Berlin on Mastodon'
|
||||
rel='noopener noreferrer'
|
||||
target='_blank'
|
||||
><img src='/icons/mastodon.svg' alt='' />
|
||||
</a>
|
||||
</li>
|
||||
<li class='matrix'>
|
||||
<a
|
||||
href='https://matrix.to/#/%23xc3-space%3A1312.media'
|
||||
title='HiP 2022 Berlin on Matrix'
|
||||
rel='noopener noreferrer'
|
||||
target='_blank'
|
||||
><img src='/icons/matrix.svg' alt='' />
|
||||
</a>
|
||||
</li>
|
||||
<li class='matrix'>
|
||||
<a
|
||||
href='https://github.com/Hacking-in-Parallel-Berlin-22/'
|
||||
title='HiP 2022 Berlin on GitHub'
|
||||
rel='noopener noreferrer'
|
||||
target='_blank'
|
||||
><img src='/icons/github.svg' alt='' />
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
Loading…
Add table
Add a link
Reference in a new issue