16 lines
No EOL
362 B
TypeScript
16 lines
No EOL
362 B
TypeScript
import type BadgeInfo from "./BadgeInfo";
|
|
|
|
const FriendBadgesPath = "/Badges/Friends/";
|
|
|
|
const FriendBadges: Array<BadgeInfo> = [
|
|
{
|
|
image: FriendBadgesPath + "autumnvleaves.jpg",
|
|
url: "https://autumnvleaves.neocities.org/"
|
|
},
|
|
{
|
|
image: FriendBadgesPath + "eva_poti_chat.png",
|
|
url: "https://www.poti.chat",
|
|
}
|
|
]
|
|
|
|
export default FriendBadges; |