forked from reisir/webring-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsites.js
36 lines (33 loc) · 942 Bytes
/
sites.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Location of the webring landing page
export const webringUrl = "https://bentovid.com/webring";
// Title of the webring widget
export const webringTitle = "BentoVid Webring";
// Array of sites in the webring
export const sites = [
{
title: "BentoVid.com",
url: "https://bentovid.com/",
description: "BentoVid Official Website",
},
{
title: "amv.tools",
url: "https://amv.tools/",
description: "Editing guides and resources (for AE & Vegas Pro)",
},
{
title: "Synæsthesia Productions",
url: "https://synaesthesia.neocities.org/",
description: "vibes n' shit",
},
{
title: "SQ Rambles About Vids",
url: "https://standardquip.dreamwidth.org/",
description: "Blogs about personal life, AMVs, and vidding",
},
{
title: "cutfilmtovent",
url: "https://cutfilmtovent.wordpress.com/",
description: "a blog about AMVs and related media",
},
];
export default sites;