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

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