Files
lixiyu-net/data/friends.ts

21 lines
396 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[] = [
{
title: "但为君故's Blog",
2024-08-12 13:59:57 +08:00
url: "https://dreams.plus/",
2023-12-25 17:21:39 +08:00
},
{
title: "Your Best Friend's Blog",
url: "https://www.example.com/",
},
{
title: "Google",
url: "https://www.google.com/",
},
{
title: "Github",
url: "https://www.github.com/",
},
];