src/data/constants.ts 500 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/stevedylandev",
23
	twitter: "https://twitter.com/stevedylandev",
24
	youtube: "https://youtube.com/@stevedylandev",
25
	twitch: "https://twitch.tv/stevedylandev",
26
	medium: "https://medium.com/@stevedylandev",
27
};