| 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 | threads: "https://threads.net/stevedylandev", |
| 25 | youtube: "https://youtube.com/@stevedylandev", |
| 26 | twitch: "https://twitch.tv/stevedylandev", |
| 27 | medium: "https://medium.com/@stevedylandev", |
| 28 | }; |