Created Footer Component and Configure Theme

This commit is contained in:
aftabrehan
2024-02-02 12:23:05 +05:00
parent 757f581fe8
commit 306ae685d6
17 changed files with 206 additions and 20 deletions

29
constants/footer-links.ts Normal file
View File

@@ -0,0 +1,29 @@
export const FOLLOW_US_LINKS = [
{ href: '/', alt: 'youtube icon', src: '/youtube.svg' },
{ href: '/', alt: 'twitter icon', src: '/twitter.svg' },
{ href: '/', alt: 'facebook icon', src: '/facebook.svg' },
]
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' },
]