162 lines
3.9 KiB
TypeScript
162 lines
3.9 KiB
TypeScript
import type { Site, SocialObjects } from "./types";
|
|
|
|
export const SITE: Site = {
|
|
website: "https://tiff.engineer/", // replace this with your deployed domain
|
|
author: "tiff w",
|
|
profile: "https://about.tiff.engineer/",
|
|
desc: "A software blog by someone named tiff.",
|
|
title: "tiff on software",
|
|
ogImage: "astropaper-og.jpg",
|
|
lightAndDarkMode: true,
|
|
postPerIndex: 4,
|
|
postPerPage: 3,
|
|
scheduledPostMargin: 15 * 60 * 1000, // 15 minutes
|
|
showArchives: true,
|
|
editPost: {
|
|
url: "https://github.com/satnaing/astro-paper/edit/main/src/content/blog",
|
|
text: "Suggest Changes",
|
|
appendFilePath: true,
|
|
},
|
|
};
|
|
|
|
export const LOCALE = {
|
|
lang: "en", // html lang code. Set this empty and default will be "en"
|
|
langTag: ["en-EN"], // BCP 47 Language Tags. Set this empty [] to use the environment default
|
|
} as const;
|
|
|
|
export const LOGO_IMAGE = {
|
|
enable: false,
|
|
svg: true,
|
|
width: 216,
|
|
height: 46,
|
|
};
|
|
|
|
export const SOCIALS: SocialObjects = [
|
|
{
|
|
name: "Github",
|
|
href: "https://github.com/twhite96",
|
|
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://github.com/satnaing/astro-paper",
|
|
linkTitle: `${SITE.title} on LinkedIn`,
|
|
active: false,
|
|
},
|
|
{
|
|
name: "Mail",
|
|
href: "mailto:yourmail@gmail.com",
|
|
linkTitle: `Send an email to ${SITE.title}`,
|
|
active: false,
|
|
},
|
|
{
|
|
name: "X",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
linkTitle: `${SITE.title} on X`,
|
|
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://hachyderm.io/@tiff",
|
|
linkTitle: `${SITE.title} on Mastodon`,
|
|
active: true,
|
|
},
|
|
{
|
|
name: "Bluesky",
|
|
href: "https://bsky.app/profile/tiff.engineer",
|
|
linkTitle: `${SITE.title} on Bluesky`,
|
|
active: true,
|
|
},
|
|
];
|