-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(libs/website/feature/introduction/welcome): create welcome const…
…ants
- Loading branch information
1 parent
2d1b816
commit e67227e
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
51 changes: 51 additions & 0 deletions
51
libs/website/feature/introduction/constants/welcome.constants.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import discord_green from '@cuhacking/shared/assets/icons/socials/discord-green-1.svg' | ||
import docs_green from '@cuhacking/shared/assets/icons/socials/docs-green-1.svg' | ||
import email_green from '@cuhacking/shared/assets/icons/socials/email-green-1.svg' | ||
import figma_green from '@cuhacking/shared/assets/icons/socials/figma-green-1.svg' | ||
import github_green from '@cuhacking/shared/assets/icons/socials/github-green-1.svg' | ||
import instagram_green from '@cuhacking/shared/assets/icons/socials/instagram-green-1.svg' | ||
import linkedin_green from '@cuhacking/shared/assets/icons/socials/linkedin-green-1.svg' | ||
import linktree_green from '@cuhacking/shared/assets/icons/socials/linktree-green-1.svg' | ||
|
||
interface Media { | ||
src: string | ||
alt: string | ||
} | ||
|
||
const socials: { link: string, media: Media }[] = [ | ||
{ | ||
link: 'https://github.com', | ||
media: { src: github_green, alt: 'GitHub' }, | ||
}, | ||
{ | ||
link: 'https://instagram.com', | ||
media: { src: instagram_green, alt: 'Instagram' }, | ||
}, | ||
{ | ||
link: 'https://linkedin.com', | ||
media: { src: linkedin_green, alt: 'LinkedIn' }, | ||
}, | ||
{ | ||
link: 'https://linktr.ee', | ||
media: { src: linktree_green, alt: 'Linktree' }, | ||
}, | ||
{ | ||
link: 'mailto:[email protected]', | ||
media: { src: email_green, alt: 'Email' }, | ||
}, | ||
{ | ||
link: 'https://discord.com', | ||
media: { src: discord_green, alt: 'Discord' }, | ||
}, | ||
{ | ||
link: 'https://docs.com', | ||
media: { src: docs_green, alt: 'Documentation' }, | ||
}, | ||
{ | ||
link: 'https://figma.com', | ||
media: { src: figma_green, alt: 'Figma' }, | ||
}, | ||
] | ||
export const WELCOME_CONSTATNTS = { | ||
SOCIALS: socials, | ||
} |