Files
fad-trade-next/types/common.ts
砂糖 216076ff2a feat: 重构导航和博客系统,支持多级菜单和API数据源
- 重构导航菜单支持多级子菜单结构
- 博客系统改为从API获取数据,移除本地文件存储
- 删除旧的关于页面,准备重构
- 修复博客详情页slug匹配问题
- 默认首页重定向到中文版本
2025-11-21 17:49:17 +08:00

22 lines
330 B
TypeScript

export interface HeaderLink {
id?: string;
name: string;
href: string;
target?: string;
rel?: string;
children?: HeaderLink[];
};
export interface FooterLink {
title: string;
links: Link[];
};
interface Link {
id?: string;
href: string;
name: string;
target?: string;
rel?: string;
useA?: boolean;
};