README.md
srccontact.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
export interface Contact {
email: string
github: string
linkedin: string
buymeacoffee: string
location: string
timezone: string
available: boolean
}
export const contact: Contact = {
email: 'contact@gurkankaradag.me',
github: 'github.com/Gurkankaradag0',
linkedin: 'linkedin.com/in/gurkankaradag',
buymeacoffee: 'buymeacoffee.com/gurkankrdg',
location: 'Çayırova, Kocaeli · TR',
timezone: 'GMT+3',
available: true
}
/** Drops a message in my inbox — replies within 24h. */
export const sendMessage = async (from: string, message: string): Promise<Response> =>
fetch('/api/contact', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ from, message })
})
Preview

Gürkan Karadağ
Full Stack Developer
Open to new workÇayırova, Kocaeli · TR
GMT+3 · 24h
TERMINAL
⚡ gurkan📁 ~/portfolio⎇ main ✔❯