34 lines
1021 B
TypeScript
34 lines
1021 B
TypeScript
import YoutubeIcon from '@/public/youtube.svg'
|
|
import TwitterIcon from '@/public/twitter.svg'
|
|
import FacebookIcon from '@/public/facebook.svg'
|
|
|
|
export const FOLLOW_US_LINKS = [
|
|
{ href: '/', Icon: YoutubeIcon },
|
|
{ href: '/', Icon: TwitterIcon },
|
|
{ href: '/', Icon: FacebookIcon },
|
|
]
|
|
|
|
export const INTERNAL_LINKS = [
|
|
{ href: '/', label: 'Documentaries' },
|
|
{ href: '/', label: 'Themes' },
|
|
{ href: '/', label: 'Chrome casts' },
|
|
]
|
|
|
|
export const EXTERNAL_LINKS = [
|
|
{ href: '/', label: 'Download Chrome Browser' },
|
|
{ href: '/', label: 'Chrome Browser for Enterprise ' },
|
|
{ href: '/', label: 'Chrome Browser Devices' },
|
|
{ href: '/', label: 'ChromeOS' },
|
|
{ href: '/', label: 'Google Cloud' },
|
|
{ href: '/', label: 'Google Workspace' },
|
|
]
|
|
|
|
export const OTHER_LINKS = [
|
|
{ href: '/', label: 'Privacy Policy' },
|
|
{ href: '/', label: 'Terms and conditions' },
|
|
{ href: '/', label: 'Cookies Policy' },
|
|
{ href: '/', label: 'About us' },
|
|
{ href: '/', label: 'EULA' },
|
|
{ href: '/', label: 'Contact' },
|
|
]
|