Add logo image to the public directory

This commit is contained in:
Poyraz Avsever
2026-03-10 09:36:47 +03:00
parent 437080eb35
commit 29a0a8a893
9 changed files with 1690 additions and 5 deletions
+39
View File
@@ -0,0 +1,39 @@
import { NAV_LINKS, SOCIAL_LINKS } from "@/lib/links";
export type CommandPaletteItem = {
id: string;
label: string;
href: string;
icon: string;
external?: boolean;
};
export type CommandPaletteGroup = {
id: string;
heading: string;
items: CommandPaletteItem[];
};
export const COMMAND_PALETTE_GROUPS: CommandPaletteGroup[] = [
{
id: "navigation",
heading: "Navigation",
items: NAV_LINKS.map((item) => ({
id: item.id,
label: item.label,
href: item.href,
icon: "mdi:compass-outline",
})),
},
{
id: "social",
heading: "Social",
items: SOCIAL_LINKS.map((item) => ({
id: item.id,
label: item.label,
href: item.href,
icon: item.icon,
external: true,
})),
},
] as const;
+70
View File
@@ -0,0 +1,70 @@
export const NAV_LINKS = [
{ id: "home", label: "Home", href: "/" },
{ id: "about", label: "About", href: "/about" },
{ id: "blog", label: "Blog", href: "/blog" },
{ id: "projects", label: "Projects", href: "/projects" },
{ id: "contact", label: "Contact", href: "/contact" },
] as const;
export const SOCIAL_LINKS = [
{
id: "email",
label: "E-Mail",
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: "Buy Me a Coffee",
href: "https://buymeacoffee.com/poyrazavsever",
icon: "mdi:coffee",
},
] as const;