src/data/constants.ts 469 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
16
// ! Remember to add your own socials
17
export const SOCIAL_LINKS = {
18
	github: "https://github.com/stevedsimkins",
19
	twitter: "https://twitter.com/stevedsimkins",
20
  medium: "https://medium.com/@stevedsimkins",
21
  linkedin: "https://linkedin.com/in/steve-simkins",
22
  ethereum: "https://rainbow.me/stevedsimkins.eth",
23
};