Amp-Thread-ID: https://ampcode.com/threads/T-019c7839-0936-729b-aa87-92b35d3d68fe Co-authored-by: Amp <amp@ampcode.com>
40 lines
921 B
TypeScript
40 lines
921 B
TypeScript
import type { Metadata, Site, Socials } from "@types";
|
|
|
|
export const SITE: Site = {
|
|
TITLE: "Micro",
|
|
DESCRIPTION: "Neeldhara's micro blog.",
|
|
EMAIL: "neeldhara.mishra@gmail.com",
|
|
NUM_POSTS_ON_HOMEPAGE: 5,
|
|
NUM_PROJECTS_ON_HOMEPAGE: 3,
|
|
};
|
|
|
|
export const HOME: Metadata = {
|
|
TITLE: "Home",
|
|
DESCRIPTION: "Astro Micro is an accessible theme for Astro.",
|
|
};
|
|
|
|
export const BLOG: Metadata = {
|
|
TITLE: "Blog",
|
|
DESCRIPTION: "A collection of articles on topics I am passionate about.",
|
|
};
|
|
|
|
export const PROJECTS: Metadata = {
|
|
TITLE: "Projects",
|
|
DESCRIPTION:
|
|
"A collection of my projects with links to repositories and live demos.",
|
|
};
|
|
|
|
export const SOCIALS: Socials = [
|
|
{
|
|
NAME: "X (formerly Twitter)",
|
|
HREF: "https://twitter.com/boogerbuttcheek",
|
|
},
|
|
{
|
|
NAME: "GitHub",
|
|
HREF: "https://github.com/trevortylerlee",
|
|
},
|
|
{
|
|
NAME: "Website",
|
|
HREF: "https://trevortylerlee.com",
|
|
},
|
|
];
|