-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
129 lines (116 loc) · 6.29 KB
/
contact.html
File metadata and controls
129 lines (116 loc) · 6.29 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact | Devcrow</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Get in touch with Christoforos Papachristoforou — Unity Developer and Game Designer available for projects and opportunities.">
<meta property="og:title" content="Contact | Devcrow Portfolio">
<meta property="og:description" content="Get in touch with Christoforos Papachristoforou — Unity Developer and Game Designer available for projects and opportunities.">
<meta property="og:image" content="https://d3vcrow.github.io/assets/obsidian_moon.png">
<meta property="og:url" content="https://d3vcrow.github.io/contact.html">
<meta property="og:type" content="website">
<link rel="icon" href="assets/obsidian_moon.png" type="image/png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Anton&family=Roboto:wght@300;400;700&display=swap">
<!-- Using FontAwesome for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/contact.css">
</head>
<body class="portfolio-page">
<!-- Navigation Bar -->
<nav>
<ul>
<li><a href="portfolio.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="skills.html">Skills</a></li>
<li><a href="contact.html" class="active">Contact</a></li>
</ul>
</nav>
<!-- Contact Section -->
<section class="contact-section reveal">
<div class="glass-panel contact-container" style="margin-top: 40px;">
<h1 class="page-title">Get In Touch</h1>
<div class="contact-text">
<p>Whether you have an interesting project, a question about Unity development, or just want to connect,
I'd love to hear from you. Select an option below to visit the profile or copy the link directly.
</p>
</div>
<div class="contact-grid">
<!-- Email -->
<div class="contact-item">
<div class="contact-icon"><i class="fas fa-envelope"></i></div>
<div class="contact-label">Email</div>
<div class="btn-group">
<a href="mailto:chr.papachristoforou@gmail.com" class="action-btn visit">
<span>Send</span> <i class="fas fa-paper-plane"></i>
</a>
<button class="action-btn copy" data-link="chr.papachristoforou@gmail.com">
<span>Copy</span> <i class="far fa-copy"></i>
</button>
</div>
</div>
<!-- LinkedIn -->
<div class="contact-item">
<div class="contact-icon"><i class="fab fa-linkedin"></i></div>
<div class="contact-label">LinkedIn</div>
<div class="btn-group">
<a href="https://www.linkedin.com/in/christoforos-papachristoforou-a7b303157/" target="_blank"
class="action-btn visit">
<span>Visit</span> <i class="fas fa-external-link-alt"></i>
</a>
<button class="action-btn copy"
data-link="https://www.linkedin.com/in/christoforos-papachristoforou-a7b303157/">
<span>Copy</span> <i class="far fa-copy"></i>
</button>
</div>
</div>
<!-- GitHub -->
<div class="contact-item">
<div class="contact-icon"><i class="fab fa-github"></i></div>
<div class="contact-label">GitHub</div>
<div class="btn-group">
<a href="https://github.com/D3vCrow" target="_blank" class="action-btn visit">
<span>Visit</span> <i class="fas fa-external-link-alt"></i>
</a>
<button class="action-btn copy" data-link="https://github.com/D3vCrow">
<span>Copy</span> <i class="far fa-copy"></i>
</button>
</div>
</div>
<!-- Itch.io -->
<div class="contact-item">
<div class="contact-icon"><i class="fab fa-itch-io"></i></div>
<div class="contact-label">Itch.io</div>
<div class="btn-group">
<a href="https://d3vcrow.itch.io/" target="_blank" class="action-btn visit">
<span>Visit</span> <i class="fas fa-external-link-alt"></i>
</a>
<button class="action-btn copy" data-link="https://d3vcrow.itch.io/">
<span>Copy</span> <i class="far fa-copy"></i>
</button>
</div>
</div>
</div>
<!-- AI Recruiter Brief -->
<div class="recruiter-brief-wrap">
<p class="recruiter-brief-label">Sharing my profile with a recruiter or an AI tool?</p>
<button
class="action-btn recruiter-brief-btn"
data-copied='<i class="fas fa-check"></i> Copied!'
onclick="copyRecruiterBrief('game', this)"
aria-label="Copy recruiter-ready profile to clipboard">
<i class="fas fa-robot"></i> <span>Copy Recruiter Brief</span>
</button>
<p class="recruiter-brief-hint">Copies a structured Markdown profile — name, skills, work history, and projects — ready to paste into an AI chat or recruiter email.</p>
</div>
</div>
</section>
<script src="js/main.js"></script>
<script src="js/contact.js"></script>
<script src="js/recruiter-brief.js"></script>
</body>
</html>