mirror of
https://github.com/skidoodle/albert.lol.git
synced 2025-02-15 06:09:15 +01:00
Initial commit
This commit is contained in:
commit
1f8d8f5b68
31 changed files with 4523 additions and 0 deletions
46
src/components/data/Socials.ts
Normal file
46
src/components/data/Socials.ts
Normal file
|
@ -0,0 +1,46 @@
|
|||
import { FaDiscord, FaEnvelope, FaGithub, FaSteam } from 'react-icons/fa'
|
||||
import { RiInstagramFill } from 'react-icons/ri'
|
||||
import type { IconType } from 'react-icons/lib'
|
||||
|
||||
type Socials = {
|
||||
id: number
|
||||
ref: string
|
||||
icon: IconType
|
||||
copyValue?: boolean
|
||||
ariaLabel?: string
|
||||
}
|
||||
|
||||
export const socials: Array<Socials> = [
|
||||
{
|
||||
id: 1,
|
||||
ref: 'https://github.com/skidoodle',
|
||||
icon: FaGithub as IconType,
|
||||
ariaLabel: 'GitHub',
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
ref: 'https://steamcommunity.com/id/_albert',
|
||||
icon: FaSteam as IconType,
|
||||
ariaLabel: 'Steam',
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
ref: 'contact@albert.lol',
|
||||
icon: FaEnvelope as IconType,
|
||||
copyValue: true,
|
||||
ariaLabel: 'Email',
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
ref: 'https://www.instagram.com/albertadam_/',
|
||||
icon: RiInstagramFill as IconType,
|
||||
ariaLabel: 'Instagram',
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
ref: 'albert.lol',
|
||||
icon: FaDiscord as IconType,
|
||||
copyValue: true,
|
||||
ariaLabel: 'Discord',
|
||||
},
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue