feat: add revisions in footer

advertise older sites
This commit is contained in:
2022-09-01 22:43:43 -04:00
parent 16eab9d7d8
commit a7efd8b1f6
2 changed files with 44 additions and 11 deletions

12
data/siteRevisions.ts Normal file
View File

@@ -0,0 +1,12 @@
interface SiteRevision {
title: string;
url?: string;
}
export const revisions: SiteRevision[] = [
{
title: "Nuxt 3 (2022)",
},
{ title: "Eleventy (2021)", url: "https://2021.eggworld.tk" },
{ title: "Vanilla (2019-2020)", url: "https://2020.eggworld.tk" },
];