src/data/constants.ts 590 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
  ethereum: "https://rainbow.me/stevedylandev.eth",
26
  farcaster: "https://warpcast.com/stevedylandev.eth",
27
  medium: "https://medium.com/@stevedylandev"
28
};