src/data/constants.ts 511 B raw
1
export const MENU_LINKS = [
2
	{
3
		title: "Home",
4
		path: "/",
5
	},
6
	{
7
		title: "About",
8
		path: "/about",
9
	},
10
	{
11
		title: "Blog",
12
		path: "/posts",
13
	},
14
	{
15
		title: "Videos",
16
		path: "/videos",
17
	},
18
];
19
20
// ! Remember to add your own socials
21
export const SOCIAL_LINKS = {
22
	github: "https://github.com/stevedsimkins",
23
	twitter: "https://twitter.com/stevedsimkins",
24
	medium: "https://medium.com/@stevedsimkins",
25
	linkedin: "https://linkedin.com/in/steve-simkins",
26
	ethereum: "https://rainbow.me/stevedsimkins.eth",
27
};