2022-09-01 22:43:43 -04:00
|
|
|
interface SiteRevision {
|
|
|
|
title: string;
|
2022-09-07 14:41:24 -04:00
|
|
|
url: string;
|
2022-09-01 22:43:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export const revisions: SiteRevision[] = [
|
|
|
|
{
|
|
|
|
title: "Nuxt 3 (2022)",
|
2022-11-01 00:07:14 -04:00
|
|
|
url: "https://eggworld.me",
|
2022-09-01 22:43:43 -04:00
|
|
|
},
|
2022-11-01 00:07:14 -04:00
|
|
|
{ title: "Eleventy (2021)", url: "https://2021.eggworld.me" },
|
|
|
|
{ title: "Vanilla (2019-2020)", url: "https://2020.eggworld.me" },
|
2022-09-01 22:43:43 -04:00
|
|
|
];
|