52 lines
1.5 KiB
TypeScript
52 lines
1.5 KiB
TypeScript
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
import { LinkTypeItem } from "../_lib/types";
|
|
import { faPenClip, faThumbsUp } from "@fortawesome/free-solid-svg-icons";
|
|
|
|
const defaultLinkList = [
|
|
{
|
|
label: 'AI应用集',
|
|
icon: <FontAwesomeIcon icon={faThumbsUp} className="fa-fw text-blue-500" />,
|
|
href: '/ai-apps',
|
|
id: 1,
|
|
},
|
|
{
|
|
label: 'AI写作工具',
|
|
icon: <FontAwesomeIcon icon={faPenClip} className="fa-fw text-blue-500" />,
|
|
id: 2,
|
|
},
|
|
{
|
|
label: 'AI写作工具',
|
|
icon: <FontAwesomeIcon icon={faPenClip} className="fa-fw text-blue-500" />,
|
|
id: 3,
|
|
},
|
|
{
|
|
label: 'AI写作工具',
|
|
icon: <FontAwesomeIcon icon={faPenClip} className="fa-fw text-blue-500" />,
|
|
id: 4,
|
|
},
|
|
{
|
|
label: 'AI写作工具',
|
|
icon: <FontAwesomeIcon icon={faPenClip} className="fa-fw text-blue-500" />,
|
|
id: 5,
|
|
},
|
|
{
|
|
label: 'AI写作工具',
|
|
icon: <FontAwesomeIcon icon={faPenClip} className="fa-fw text-blue-500" />,
|
|
id: 6,
|
|
},
|
|
{
|
|
label: 'AI写作工具',
|
|
icon: <FontAwesomeIcon icon={faPenClip} className="fa-fw text-blue-500" />,
|
|
id: 7,
|
|
},
|
|
{
|
|
label: 'AI写作工具',
|
|
icon: <FontAwesomeIcon icon={faPenClip} className="fa-fw text-blue-500" />,
|
|
id: 8,
|
|
},
|
|
{
|
|
label: 'AI写作工具',
|
|
icon: <FontAwesomeIcon icon={faPenClip} className="fa-fw text-blue-500" />,
|
|
id: 9,
|
|
}
|
|
] as LinkTypeItem[]; |