Fix siteTitle

This commit is contained in:
Kristian Takvam 2025-10-06 21:52:04 +02:00
parent 60bc4246ce
commit 89b4f3cb18
2 changed files with 5 additions and 5 deletions

View File

@ -33,7 +33,7 @@ export default defineConfig({
themes: { // https://shiki.style/themes themes: { // https://shiki.style/themes
light: "light-plus", light: "light-plus",
dark: "dark-plus", dark: "dark-plus",
} }
}, },
extendDefaultPlugins: true extendDefaultPlugins: true
}, },

View File

@ -19,11 +19,11 @@ export interface Props {
const { title, description, image, noindex, canonical } = Astro.props; const { title, description, image, noindex, canonical } = Astro.props;
const siteTitle = "Astrogon"; const siteTitle = "Kristian Emil Takvam (Krem)";
const siteDescription = "Astrogon is a simple and elegant Astro theme."; const siteDescription = "Kristian Takvam's website.";
const siteImage = "@assets/og-image.png"; const siteImage = "@assets/og-image.png";
const siteAuthor = "Jane Doe"; const siteAuthor = "Kristian Emil Takvam";
const baseUrl = "https://janedoe.com"; const baseUrl = "https://Kremtastic.github.io";
--- ---
<!DOCTYPE html> <!DOCTYPE html>