diff --git a/src/config.ts b/src/config.ts index e559dd3..f3a4017 100644 --- a/src/config.ts +++ b/src/config.ts @@ -1,4 +1,4 @@ -import type { SocialsObject } from "./types"; +import type { SocialObjects } from "./types"; export const SITE = { website: "https://astro-paper.pages.dev/", @@ -17,11 +17,11 @@ export const LOGO_IMAGE = { height: 46, }; -export const SOCIALS: SocialsObject = [ +export const SOCIALS: SocialObjects = [ { name: "Github", - linkTitle: ` ${SITE.title} on Github`, href: "https://github.com/satnaing/astro-paper", + linkTitle: ` ${SITE.title} on Github`, active: true, }, { diff --git a/src/types.ts b/src/types.ts index b5f4273..e35b296 100644 --- a/src/types.ts +++ b/src/types.ts @@ -10,7 +10,7 @@ export interface Frontmatter { tags: string[]; } -export type SocialsObject = { +export type SocialObjects = { name: SocialMedia; href: string; active: boolean;