21 lines
396 B
TypeScript
21 lines
396 B
TypeScript
import type { TFriendItem } from "@/types/friend.type";
|
|
|
|
export const FriendsList: TFriendItem[] = [
|
|
{
|
|
title: "但为君故's Blog",
|
|
url: "https://dreams.plus/",
|
|
},
|
|
{
|
|
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/",
|
|
},
|
|
];
|