71 lines
1.6 KiB
TypeScript
71 lines
1.6 KiB
TypeScript
export const NAV_LINKS = [
|
||
{ id: "about", label: "Hakkımda", href: "/about" },
|
||
{ id: "blog", label: "Blog", href: "/blog" },
|
||
{ id: "content", label: "İçerikler", href: "/content" },
|
||
{ id: "projects", label: "Projeler", href: "/projects" },
|
||
{ id: "contact", label: "İletişim", href: "/contact" },
|
||
] as const;
|
||
|
||
export const SOCIAL_LINKS = [
|
||
{
|
||
id: "email",
|
||
label: "E-posta",
|
||
href: "mailto:poyrazavsever@gmail.com",
|
||
icon: "mdi:email",
|
||
},
|
||
{
|
||
id: "linkedin",
|
||
label: "LinkedIn",
|
||
href: "https://www.linkedin.com/in/poyrazavsever/",
|
||
icon: "mdi:linkedin",
|
||
},
|
||
{
|
||
id: "github",
|
||
label: "GitHub",
|
||
href: "https://github.com/poyrazavsever",
|
||
icon: "mdi:github",
|
||
},
|
||
{
|
||
id: "instagram",
|
||
label: "Instagram",
|
||
href: "https://instagram.com/poyraz_avsever",
|
||
icon: "mdi:instagram",
|
||
},
|
||
{
|
||
id: "youtube",
|
||
label: "YouTube",
|
||
href: "https://youtube.com/@poyrazavsever",
|
||
icon: "mdi:youtube",
|
||
},
|
||
{
|
||
id: "medium",
|
||
label: "Medium",
|
||
href: "https://medium.com/@poyrazavsever",
|
||
icon: "mdi:medium",
|
||
},
|
||
{
|
||
id: "x",
|
||
label: "X",
|
||
href: "https://x.com/poyrazavsever",
|
||
icon: "ri:twitter-x-fill",
|
||
},
|
||
{
|
||
id: "behance",
|
||
label: "Behance",
|
||
href: "https://behance.net/poyrazavsever",
|
||
icon: "mdi:behance",
|
||
},
|
||
{
|
||
id: "spotify",
|
||
label: "Spotify",
|
||
href: "https://open.spotify.com/user/3136fdjkc5p4cbzmuxhvqdd4b2hu",
|
||
icon: "mdi:spotify",
|
||
},
|
||
{
|
||
id: "buy-me-a-coffee",
|
||
label: "Bana kahve ısmarla",
|
||
href: "https://buymeacoffee.com/poyrazavsever",
|
||
icon: "mdi:coffee",
|
||
},
|
||
] as const;
|