2025-02-23 10:11:47 +08:00
|
|
|
import type { JSX, SVGProps } from 'react'
|
2025-02-02 03:15:18 +08:00
|
|
|
|
|
|
|
|
import { FacebookIcon } from '~/components/icons/facebook'
|
|
|
|
|
import { InstagramIcon } from '~/components/icons/instagram'
|
|
|
|
|
import { LinkedinIcon } from '~/components/icons/linkedin'
|
|
|
|
|
import { XIcon } from '~/components/icons/x'
|
|
|
|
|
|
2025-02-23 12:18:10 +08:00
|
|
|
type TMenu = {
|
|
|
|
|
title: string
|
|
|
|
|
url: string
|
|
|
|
|
icon?: (
|
|
|
|
|
properties: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>,
|
|
|
|
|
) => JSX.Element
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type TFooterMenu = {
|
|
|
|
|
group: string
|
|
|
|
|
items: TMenu[]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const FOOTER_MENU: TFooterMenu[] = [
|
2025-02-02 03:15:18 +08:00
|
|
|
{
|
|
|
|
|
group: 'About Us',
|
|
|
|
|
items: [
|
|
|
|
|
{
|
|
|
|
|
title: 'Popular',
|
2025-02-28 11:49:51 +08:00
|
|
|
url: '/list?sort=popular',
|
2025-02-02 03:15:18 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Trending',
|
2025-02-28 11:49:51 +08:00
|
|
|
url: '/list?sort=trending',
|
2025-02-02 03:15:18 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Contact',
|
2025-02-28 11:49:51 +08:00
|
|
|
url: '/contact',
|
2025-02-02 03:15:18 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Support/Help',
|
2025-02-28 11:49:51 +08:00
|
|
|
url: '/support',
|
2025-02-02 03:15:18 +08:00
|
|
|
},
|
|
|
|
|
{
|
2025-03-19 17:21:17 +08:00
|
|
|
title: 'Request Topic',
|
2025-02-28 11:49:51 +08:00
|
|
|
url: '/request-topic',
|
2025-02-02 03:15:18 +08:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
group: 'Column Two',
|
|
|
|
|
items: [
|
|
|
|
|
{
|
|
|
|
|
title: 'FAQs',
|
2025-02-28 11:49:51 +08:00
|
|
|
url: '/faq',
|
2025-02-02 03:15:18 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Terms and Condition',
|
2025-02-28 11:49:51 +08:00
|
|
|
url: '/terms-condition',
|
2025-02-02 03:15:18 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Support',
|
2025-02-28 11:49:51 +08:00
|
|
|
url: '/support',
|
2025-02-02 03:15:18 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Link Nine',
|
2025-02-28 11:49:51 +08:00
|
|
|
url: '/',
|
2025-02-02 03:15:18 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Link Ten',
|
2025-02-28 11:49:51 +08:00
|
|
|
url: '/',
|
2025-02-02 03:15:18 +08:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
group: 'Follow Us',
|
|
|
|
|
items: [
|
|
|
|
|
{
|
|
|
|
|
title: 'Facebook',
|
|
|
|
|
icon: FacebookIcon,
|
|
|
|
|
url: 'https://facebook.com',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Instagram',
|
|
|
|
|
icon: InstagramIcon,
|
|
|
|
|
url: 'https://instagram.com',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'X',
|
|
|
|
|
icon: XIcon,
|
|
|
|
|
url: 'https://x.com',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Linkedin',
|
|
|
|
|
icon: LinkedinIcon,
|
|
|
|
|
url: 'https://linkedin.com',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
]
|
|
|
|
|
|
2025-02-23 12:18:10 +08:00
|
|
|
export const COPYRIGHT_MENU: TMenu[] = [
|
2025-02-02 03:15:18 +08:00
|
|
|
{
|
|
|
|
|
title: 'Privacy Policy',
|
2025-02-28 11:49:51 +08:00
|
|
|
url: '/privacy-policy',
|
2025-02-02 03:15:18 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Terms of Service',
|
2025-02-28 11:49:51 +08:00
|
|
|
url: '/terms-of-service',
|
2025-02-02 03:15:18 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Cookies Settings',
|
2025-02-28 11:49:51 +08:00
|
|
|
url: '/cookies-settings',
|
2025-02-01 01:19:01 +08:00
|
|
|
},
|
|
|
|
|
]
|