diff --git a/package.json b/package.json index 2719859..5f88fe2 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,7 @@ "name": "mainwebsite", "type": "module", "version": "0.0.1", + "packageManager": "yarn@1.22.21", "scripts": { "dev": "astro dev", "start": "astro dev", diff --git a/public/fonts/atkinson-bold.woff b/public/fonts/atkinson-bold.woff deleted file mode 100644 index e7f8977..0000000 Binary files a/public/fonts/atkinson-bold.woff and /dev/null differ diff --git a/public/fonts/atkinson-regular.woff b/public/fonts/atkinson-regular.woff deleted file mode 100644 index bbe09c5..0000000 Binary files a/public/fonts/atkinson-regular.woff and /dev/null differ diff --git a/src/components/ImageAuthor.astro b/src/components/ImageAuthor.astro index 88d6975..581f3e7 100644 --- a/src/components/ImageAuthor.astro +++ b/src/components/ImageAuthor.astro @@ -20,5 +20,5 @@ const { url, author, description, location } = Astro.props;

{description}

by {author}

- +
\ No newline at end of file diff --git a/src/pages/index.astro b/src/pages/index.astro index 78f97b3..f8dd499 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -24,15 +24,15 @@ const randomBackground = Backgrounds[Math.floor(Math.random() * Backgrounds.leng
- {''} + {'pfp'}

Hobbyist developer & sern lead developer team member

- - - - - - + + + + + +
diff --git a/src/pages/rss.xml.js b/src/pages/rss.xml.js deleted file mode 100644 index 9ff9801..0000000 --- a/src/pages/rss.xml.js +++ /dev/null @@ -1,16 +0,0 @@ -import rss from '@astrojs/rss'; -import { getCollection } from 'astro:content'; -import { SITE_TITLE, SITE_DESCRIPTION } from '../consts'; - -export async function GET(context) { - const posts = await getCollection('blog'); - return rss({ - title: SITE_TITLE, - description: SITE_DESCRIPTION, - site: context.site, - items: posts.map((post) => ({ - ...post.data, - link: `/blog/${post.slug}/`, - })), - }); -}