mirror of
https://github.com/ChenQihan666/MyBlog-Next.git
synced 2026-08-14 07:33:07 +08:00
0d5ea52c23
* Add a SITE config parameter for posts in index page * docs: update blog post for `postPerIndex` config --------- Co-authored-by: satnaing <satnaingdev@gmail.com>
150 lines
3.6 KiB
TypeScript
150 lines
3.6 KiB
TypeScript
import type { Site, SocialObjects } from "./types";
|
|
|
|
export const SITE: Site = {
|
|
website: "https://astro-paper.pages.dev/", // replace this with your deployed domain
|
|
author: "Sat Naing",
|
|
profile: "https://satnaing.dev/",
|
|
desc: "A minimal, responsive and SEO-friendly Astro blog theme.",
|
|
title: "AstroPaper",
|
|
ogImage: "astropaper-og.jpg",
|
|
lightAndDarkMode: true,
|
|
postPerIndex: 4,
|
|
postPerPage: 3,
|
|
scheduledPostMargin: 15 * 60 * 1000, // 15 minutes
|
|
};
|
|
|
|
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/satnaing/astro-paper",
|
|
linkTitle: ` ${SITE.title} on Github`,
|
|
active: true,
|
|
},
|
|
{
|
|
name: "Facebook",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
linkTitle: `${SITE.title} on Facebook`,
|
|
active: true,
|
|
},
|
|
{
|
|
name: "Instagram",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
linkTitle: `${SITE.title} on Instagram`,
|
|
active: true,
|
|
},
|
|
{
|
|
name: "LinkedIn",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
linkTitle: `${SITE.title} on LinkedIn`,
|
|
active: true,
|
|
},
|
|
{
|
|
name: "Mail",
|
|
href: "mailto:yourmail@gmail.com",
|
|
linkTitle: `Send an email to ${SITE.title}`,
|
|
active: false,
|
|
},
|
|
{
|
|
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,
|
|
},
|
|
];
|