Add SITE and SOCIAL configuration objects

This commit is contained in:
Sat Naing
2022-09-22 21:16:35 +06:30
parent 0ad254347d
commit 81ffec1ccb
+107
View File
@@ -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,
},
];