Files
MyBlog-Next/src/config.ts
T
2022-09-23 13:17:49 +06:30

116 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: "og-default.png",
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,
},
];