diff --git a/src/constants/links.ts b/src/constants/links.ts index 01e1717..da7583e 100644 --- a/src/constants/links.ts +++ b/src/constants/links.ts @@ -47,7 +47,7 @@ export const footerLinks: Link[] = [ }, { text: 'Mastodon', - url: 'https://fosstodon.org/@ayo', + url: 'https://social.ayco.io/public/local', icon: 'mastodon', }, { @@ -60,7 +60,9 @@ export const footerLinks: Link[] = [ url: 'https://github.com/ayoayco', icon: 'github', }, +] +export const socialLinks: Link[] = [ /** * TODO: add all socials to about page */ diff --git a/src/pages/now/and-then/index.astro b/src/pages/now/and-then.astro similarity index 84% rename from src/pages/now/and-then/index.astro rename to src/pages/now/and-then.astro index b4ad12e..c6f4e50 100644 --- a/src/pages/now/and-then/index.astro +++ b/src/pages/now/and-then.astro @@ -1,12 +1,12 @@ --- -import Layout from '../../../layouts/Layout.astro' -import Footer from '../../../components/Footer.astro' -import Posts from '../../../components/Posts.astro' +import Layout from '../../layouts/Layout.astro' +import Footer from '../../components/Footer.astro' +import Posts from '../../components/Posts.astro' import type { AstroInstance } from 'astro' // const posts = await Astro.glob('./posts/*.astro') const posts: AstroInstance[] = Object.values( - import.meta.glob('./posts/*.astro', { eager: true }) + import.meta.glob('./and-then/posts/*.astro', { eager: true }) ) const title = 'Previously...' ---