-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconsts.ts
39 lines (33 loc) · 882 Bytes
/
consts.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import type { Site, Metadata, Socials } from "@types";
export const SITE: Site = {
NAME: "Ye Drive",
EMAIL: "saldigioia@pm.me",
NUM_POSTS_ON_HOMEPAGE: 3,
NUM_PROJECTS_ON_HOMEPAGE: 9,
};
export const HOME: Metadata = {
TITLE: "Home",
DESCRIPTION: "Astro Nano is a minimal and lightweight blog and portfolio.",
};
export const BLOG: Metadata = {
TITLE: "Press",
DESCRIPTION: "A collection of articles on topics I am passionate about.",
};
export const PROJECTS: Metadata = {
TITLE: "Collections",
DESCRIPTION: "A collection of my projects, with links to repositories and demos.",
};
export const SOCIALS: Socials = [
{
NAME: "twitter-x",
HREF: "https://twitter.com/markhorn_dev",
},
{
NAME: "github",
HREF: "https://github.com/markhorn-dev"
},
{
NAME: "linkedin",
HREF: "https://www.linkedin.com/in/markhorn-dev",
}
];