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

View file

@ -52,7 +52,7 @@ onMounted(() => {
<div class="relative z-50 flex w-full justify-center text-white"> <div class="relative z-50 flex w-full justify-center text-white">
<!-- Metadata --> <!-- Metadata -->
<MetaSet title="Articles" description="Ramblings." <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 --> <!-- Main Content -->
<div class="mt-8 flex-col text-center"> <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"> <div class="relative flex w-full justify-center text-white">
<!-- Metadata --> <!-- Metadata -->
<MetaSet title="Home" description="TheFelidae's personal site" <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="mt-8 flex-col text-center">
<div class="flex justify-center"> <div class="flex justify-center">
<div id="PFP" class="shadow-md rounded-full shadow-highlight"> <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" <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>
</div> </div>