Files
lixiyu-net/data/friends.ts

17 lines
301 B
TypeScript
Raw Normal View History

import type { TFriendItem } from "@/types/friend.type";
2023-12-25 17:21:39 +08:00
export const FriendsList: TFriendItem[] = [
{
2025-09-18 17:04:40 +08:00
title: "dev.2ha.me",
url: "https://dev.2ha.me",
2023-12-25 17:21:39 +08:00
},
{
title: "Google",
url: "https://www.google.com/",
},
{
title: "Github",
url: "https://www.github.com/",
},
];