mirror of
https://github.com/ChenQihan666/MyBlog-Next.git
synced 2026-08-14 11:29:33 +08:00
117 lines
2.3 KiB
TypeScript
117 lines
2.3 KiB
TypeScript
import type { SocialsObject } from "./types";
|
|
|
|
export const SITE = {
|
|
website: "https://astro-paper.pages.dev/",
|
|
author: "Sat Naing",
|
|
desc: "A minimal, responsive and SEO-friendly Astro blog theme.",
|
|
title: "AstroPaper",
|
|
ogImage: "default-og.png",
|
|
lightAndDarkMode: true,
|
|
postPerPage: 3,
|
|
};
|
|
|
|
export const LOGO_IMAGE = {
|
|
enable: false,
|
|
svg: true,
|
|
width: 216,
|
|
height: 46,
|
|
};
|
|
|
|
export const SOCIALS: SocialsObject = [
|
|
{
|
|
name: "Github",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
active: true,
|
|
},
|
|
{
|
|
name: "Facebook",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
active: true,
|
|
},
|
|
{
|
|
name: "Instagram",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
active: true,
|
|
},
|
|
{
|
|
name: "Linkedin",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
active: true,
|
|
},
|
|
{
|
|
name: "Mail",
|
|
href: "mailto:yourmail@gmail.com",
|
|
active: false,
|
|
},
|
|
{
|
|
name: "Twitter",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
active: false,
|
|
},
|
|
{
|
|
name: "Twitch",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
active: false,
|
|
},
|
|
{
|
|
name: "YouTube",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
active: false,
|
|
},
|
|
{
|
|
name: "WhatsApp",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
active: false,
|
|
},
|
|
{
|
|
name: "Snapchat",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
active: false,
|
|
},
|
|
{
|
|
name: "Pinterest",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
active: false,
|
|
},
|
|
{
|
|
name: "TikTok",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
active: false,
|
|
},
|
|
{
|
|
name: "CodePen",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
active: false,
|
|
},
|
|
{
|
|
name: "Discord",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
active: false,
|
|
},
|
|
{
|
|
name: "GitLab",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
active: false,
|
|
},
|
|
{
|
|
name: "Reddit",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
active: false,
|
|
},
|
|
{
|
|
name: "Skype",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
active: false,
|
|
},
|
|
{
|
|
name: "Steam",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
active: false,
|
|
},
|
|
{
|
|
name: "Telegram",
|
|
href: "https://github.com/satnaing/astro-paper",
|
|
active: false,
|
|
},
|
|
];
|