From 81ffec1ccb06554982d051617deea3da3243cea8 Mon Sep 17 00:00:00 2001 From: Sat Naing Date: Thu, 22 Sep 2022 21:16:35 +0630 Subject: [PATCH] Add SITE and SOCIAL configuration objects --- src/config.ts | 107 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 src/config.ts diff --git a/src/config.ts b/src/config.ts new file mode 100644 index 0000000..546a531 --- /dev/null +++ b/src/config.ts @@ -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, + }, +];