This commit is contained in:
Mrrp 2025-01-26 16:18:30 -08:00
parent 766fe6fa85
commit 4d731cb2bb
3 changed files with 10 additions and 10 deletions

View file

@ -1,16 +1,16 @@
export default {
// Site information
siteTitle: 'TheFelidae',
siteDescription: 'TheFelidae\'s site and rambling ground',
siteUrl: 'https://thefelidae.github.io',
siteTitle: "Luna's Blog",
siteDescription: "Luna's rambling place!",
siteUrl: 'https://mrrpnya.github.io',
siteImage: '',
// Site personalization
siteColor: '#550077',
// Author information
siteAuthor: 'TheFelidae',
siteAuthorContact: 'https://www.github.com/TheFelidae',
siteAuthorPronouns: 'she/her/they/them',
siteAuthorLocation: 'Gallifrey'
siteAuthor: 'Luna',
siteAuthorContact: 'https://www.github.com/mrrpnya',
siteAuthorPronouns: 'she/they/fae',
siteAuthorLocation: 'The Town Inside Me'
};

View file

@ -52,7 +52,7 @@ onMounted(() => {
<div class="relative z-50 flex w-full justify-center text-white">
<!-- Metadata -->
<MetaSet title="Articles" description="Ramblings."
background="https://avatars.githubusercontent.com/u/94077364?v=4" tags="blog, personal, author" />
background="/me.png" tags="blog, personal, author" />
<!-- Main Content -->
<div class="mt-8 flex-col text-center">

View file

@ -14,12 +14,12 @@ const { data } = await useAsyncData('about_me', () => queryContent('/about_me').
<div class="relative flex w-full justify-center text-white">
<!-- Metadata -->
<MetaSet title="Home" description="TheFelidae's personal site"
background="https://avatars.githubusercontent.com/u/94077364?v=4" tags="home, personal, author" />
background="/me.png" tags="home, personal, author" />
<div class="mt-8 flex-col text-center">
<div class="flex justify-center">
<div id="PFP" class="shadow-md rounded-full shadow-highlight">
<img class="transition-all w-40 h-40 md:w-56 md:h-56 rounded-full"
src="https://avatars.githubusercontent.com/u/94077364?v=4" alt="User PFP" />
src="/me.png" alt="User PFP" />
</div>
</div>