ai-bot/app/ai-apps/page.tsx

14 lines
393 B
TypeScript
Raw Normal View History

2025-01-16 10:38:01 +08:00
import { faBackward } from "@fortawesome/free-solid-svg-icons"
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
export const AIAppLinkList = [
{
label: '返回',
icon: <FontAwesomeIcon icon={faBackward} className="fa-fw " />,
href: '/',
id: 1,
},
]
export default function Page() {
return <div className="bg-red-300">AI Apps</div>
}