mirror of
https://github.com/ChenQihan666/MyBlog-Next.git
synced 2026-08-14 11:29:33 +08:00
Add SITE and SOCIAL configuration objects
This commit is contained in:
+107
@@ -0,0 +1,107 @@
|
|||||||
|
import type { SocialsObject } from "./types";
|
||||||
|
|
||||||
|
export const SITE = {
|
||||||
|
author: "Sat Naing",
|
||||||
|
desc: "A minimal, responsive and SEO-friendly Astro blog theme.",
|
||||||
|
title: "AstroPaper",
|
||||||
|
ogImage: "og-default.png",
|
||||||
|
postPerPage: 3,
|
||||||
|
};
|
||||||
|
|
||||||
|
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,
|
||||||
|
},
|
||||||
|
];
|
||||||
Reference in New Issue
Block a user