56 lines
1.3 KiB
TypeScript
56 lines
1.3 KiB
TypeScript
/**
|
|
* 页脚配置
|
|
*/
|
|
|
|
export interface FooterLink {
|
|
href: string;
|
|
labelKey: string;
|
|
}
|
|
|
|
export interface FooterSection {
|
|
titleKey: string;
|
|
links: FooterLink[];
|
|
}
|
|
|
|
export const FOOTER_SECTIONS: FooterSection[] = [
|
|
{
|
|
titleKey: "about",
|
|
links: [
|
|
{ href: "/about", labelKey: "aboutUs" },
|
|
{ href: "/blog", labelKey: "blog" },
|
|
{ href: "/careers", labelKey: "careers" },
|
|
{ href: "/press", labelKey: "press" },
|
|
],
|
|
},
|
|
{
|
|
titleKey: "support",
|
|
links: [
|
|
{ href: "/help", labelKey: "helpCenter" },
|
|
{ href: "/safety", labelKey: "safety" },
|
|
{ href: "/guidelines", labelKey: "guidelines" },
|
|
{ href: "/contact", labelKey: "contactUs" },
|
|
],
|
|
},
|
|
{
|
|
titleKey: "legal",
|
|
links: [
|
|
{ href: "/terms", labelKey: "termsOfService" },
|
|
{ href: "/privacy", labelKey: "privacyPolicy" },
|
|
{ href: "/cookies", labelKey: "cookiePolicy" },
|
|
],
|
|
},
|
|
{
|
|
titleKey: "social",
|
|
links: [
|
|
{ href: "https://twitter.com", labelKey: "twitter" },
|
|
{ href: "https://facebook.com", labelKey: "facebook" },
|
|
{ href: "https://instagram.com", labelKey: "instagram" },
|
|
{ href: "https://youtube.com", labelKey: "youtube" },
|
|
],
|
|
},
|
|
];
|
|
|
|
export function getFooterSections() {
|
|
return FOOTER_SECTIONS;
|
|
}
|