-
Notifications
You must be signed in to change notification settings - Fork 22
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/shared/ui/navigation/navbar): create navbar constants
- Loading branch information
1 parent
0cbb763
commit f573285
Showing
1 changed file
with
85 additions
and
0 deletions.
There are no files selected for viewing
85 changes: 85 additions & 0 deletions
85
libs/website/shared/ui/navigation/navbar/constants/navbar.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,85 @@ | ||
import hamburger from '@cuhacking/shared/assets/icons/general/hamburger-1.svg' | ||
import discord_white from '@cuhacking/shared/assets/icons/socials/discord-white-1.svg' | ||
import docs_white from '@cuhacking/shared/assets/icons/socials/docs-white-1.svg' | ||
import email_white from '@cuhacking/shared/assets/icons/socials/email-white-1.svg' | ||
import figma_white from '@cuhacking/shared/assets/icons/socials/figma-white-1.svg' | ||
import github_white from '@cuhacking/shared/assets/icons/socials/github-white-1.svg' | ||
import instagram_white from '@cuhacking/shared/assets/icons/socials/instagram-white-1.svg' | ||
import linkedin_white from '@cuhacking/shared/assets/icons/socials/linkedin-white-1.svg' | ||
import linktree_white from '@cuhacking/shared/assets/icons/socials/linktree-white-1.svg' | ||
import cuHackingLogo from '@cuhacking/shared/assets/logos/cuHacking/cuhacking-logo-1.svg' | ||
|
||
const links = [ | ||
{ name: 'ABOUT', link: '/#about' }, | ||
{ name: 'EVENTS', link: '/#events' }, | ||
{ name: 'SPONSORS', link: '/#sponsors' }, | ||
{ name: 'FAQ', link: '/#faq' }, | ||
] | ||
|
||
const socials = [ | ||
{ | ||
link: 'https://github.com', | ||
media: { | ||
src: github_white, | ||
alt: 'GitHub', | ||
}, | ||
}, | ||
{ | ||
link: 'https://instagram.com', | ||
media: { | ||
src: instagram_white, | ||
alt: 'Instagram', | ||
}, | ||
}, | ||
{ | ||
link: 'https://linkedin.com', | ||
media: { | ||
src: linkedin_white, | ||
alt: 'LinkedIn', | ||
}, | ||
}, | ||
{ | ||
link: 'https://linktr.ee', | ||
media: { | ||
src: linktree_white, | ||
alt: 'Linktree', | ||
}, | ||
}, | ||
{ | ||
link: 'mailto:[email protected]', | ||
media: { | ||
src: email_white, | ||
alt: 'Email', | ||
}, | ||
}, | ||
{ | ||
link: 'https://discord.com', | ||
media: { | ||
src: discord_white, | ||
alt: 'Discord', | ||
}, | ||
}, | ||
{ | ||
link: 'https://docs.com', | ||
media: { | ||
src: docs_white, | ||
alt: 'Documentation', | ||
}, | ||
}, | ||
{ | ||
link: 'https://figma.com', | ||
media: { | ||
src: figma_white, | ||
alt: 'Figma', | ||
}, | ||
}, | ||
] | ||
export const NAVBAR_CONSTANTS = { | ||
SOCIALS: socials, | ||
LINKS: links, | ||
LOGO: cuHackingLogo, | ||
HAMBURGER: { | ||
src: hamburger, | ||
alt: 'Hambuger Icon', | ||
}, | ||
} |