2024-08-14 12:57:22 +08:00
|
|
|
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/",
|
|
|
|
|
},
|
|
|
|
|
];
|