mirror of
https://github.com/alexohneander/alexohneander-astro.git
synced 2025-06-28 14:31:52 +00:00
145 lines
3.4 KiB
TypeScript
145 lines
3.4 KiB
TypeScript
import type { Site, SocialObjects } from "./types";
|
|
|
|
export const SITE: Site = {
|
|
website: "https://astro-paper.pages.dev/",
|
|
author: "Alex Wellnitz",
|
|
desc: "A minimal, responsive and SEO-friendly Astro blog theme.",
|
|
title: "Alexohneander",
|
|
subtitle: "Engineering Chaos",
|
|
ogImage: "astropaper-og.jpg",
|
|
lightAndDarkMode: true,
|
|
postPerPage: 3,
|
|
};
|
|
|
|
export const LOCALE = ["en-EN"]; // set to [] to use the environment default
|
|
|
|
export const LOGO_IMAGE = {
|
|
enable: false,
|
|
svg: true,
|
|
width: 216,
|
|
height: 46,
|
|
};
|
|
|
|
export const SOCIALS: SocialObjects = [
|
|
{
|
|
name: "Github",
|
|
href: "https://github.com/alexohneander",
|
|
linkTitle: ` ${SITE.title} on Github`,
|
|
active: true,
|
|
},
|
|
{
|
|
name: "Facebook",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
linkTitle: `${SITE.title} on Facebook`,
|
|
active: false,
|
|
},
|
|
{
|
|
name: "Instagram",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
linkTitle: `${SITE.title} on Instagram`,
|
|
active: false,
|
|
},
|
|
{
|
|
name: "LinkedIn",
|
|
href: "https://www.linkedin.com/in/alex-wellnitz/",
|
|
linkTitle: `${SITE.title} on LinkedIn`,
|
|
active: true,
|
|
},
|
|
{
|
|
name: "Mail",
|
|
href: "mailto:moin@wellnitz-alex.de",
|
|
linkTitle: `Send an email to ${SITE.title}`,
|
|
active: true,
|
|
},
|
|
{
|
|
name: "Twitter",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
linkTitle: `${SITE.title} on Twitter`,
|
|
active: false,
|
|
},
|
|
{
|
|
name: "Twitch",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
linkTitle: `${SITE.title} on Twitch`,
|
|
active: false,
|
|
},
|
|
{
|
|
name: "YouTube",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
linkTitle: `${SITE.title} on YouTube`,
|
|
active: false,
|
|
},
|
|
{
|
|
name: "WhatsApp",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
linkTitle: `${SITE.title} on WhatsApp`,
|
|
active: false,
|
|
},
|
|
{
|
|
name: "Snapchat",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
linkTitle: `${SITE.title} on Snapchat`,
|
|
active: false,
|
|
},
|
|
{
|
|
name: "Pinterest",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
linkTitle: `${SITE.title} on Pinterest`,
|
|
active: false,
|
|
},
|
|
{
|
|
name: "TikTok",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
linkTitle: `${SITE.title} on TikTok`,
|
|
active: false,
|
|
},
|
|
{
|
|
name: "CodePen",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
linkTitle: `${SITE.title} on CodePen`,
|
|
active: false,
|
|
},
|
|
{
|
|
name: "Discord",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
linkTitle: `${SITE.title} on Discord`,
|
|
active: false,
|
|
},
|
|
{
|
|
name: "GitLab",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
linkTitle: `${SITE.title} on GitLab`,
|
|
active: false,
|
|
},
|
|
{
|
|
name: "Reddit",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
linkTitle: `${SITE.title} on Reddit`,
|
|
active: false,
|
|
},
|
|
{
|
|
name: "Skype",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
linkTitle: `${SITE.title} on Skype`,
|
|
active: false,
|
|
},
|
|
{
|
|
name: "Steam",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
linkTitle: `${SITE.title} on Steam`,
|
|
active: false,
|
|
},
|
|
{
|
|
name: "Telegram",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
linkTitle: `${SITE.title} on Telegram`,
|
|
active: false,
|
|
},
|
|
{
|
|
name: "Mastodon",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
linkTitle: `${SITE.title} on Mastodon`,
|
|
active: false,
|
|
},
|
|
];
|