Skip to content

Commit 4d73624

Browse files
committed
DEV
1 parent 966facf commit 4d73624

2 files changed

Lines changed: 141 additions & 0 deletions

File tree

Verified.html

Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>DevDisplay Profile Verified</title>
7+
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" />
8+
<style>
9+
body {
10+
background-color: #091224;
11+
font-family: 'Segoe UI', sans-serif;
12+
}
13+
.email-wrapper {
14+
max-width: 600px;
15+
margin: auto;
16+
background: #0d1b2a;
17+
border-radius: 16px;
18+
overflow: hidden;
19+
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
20+
}
21+
.header {
22+
text-align: center;
23+
padding: 20px;
24+
}
25+
.header img {
26+
max-height: 60px;
27+
width: auto;
28+
}
29+
.hero-icon-box {
30+
background-color: #112240;
31+
padding: 40px 0;
32+
text-align: center;
33+
}
34+
.hero-icon-box img {
35+
width: 100px;
36+
height: 100px;
37+
}
38+
.content {
39+
padding: 30px;
40+
text-align: center;
41+
}
42+
.content h1 {
43+
font-size: 28px;
44+
font-weight: bold;
45+
color: #ffffff;
46+
}
47+
.content p {
48+
font-size: 16px;
49+
color: #cccccc;
50+
}
51+
.btn-custom {
52+
margin-top: 20px;
53+
padding: 12px 30px;
54+
background-color: #4a90e2;
55+
color: white;
56+
border-radius: 50px;
57+
font-weight: 500;
58+
text-decoration: none;
59+
display: inline-block;
60+
}
61+
.footer {
62+
background-color: #0a192f;
63+
padding: 20px;
64+
text-align: center;
65+
}
66+
.footer a {
67+
margin: 0 10px;
68+
text-decoration: none;
69+
color: #4a90e2;
70+
}
71+
.social-icons img {
72+
width: 24px;
73+
margin: 0 8px;
74+
}
75+
@media (max-width: 576px) {
76+
.content h1 {
77+
font-size: 22px;
78+
}
79+
.content p {
80+
font-size: 14px;
81+
}
82+
.btn-custom {
83+
padding: 10px 20px;
84+
font-size: 14px;
85+
}
86+
.social-icons img {
87+
width: 20px;
88+
margin: 0 6px;
89+
}
90+
}
91+
</style>
92+
</head>
93+
<body>
94+
<div class="email-wrapper">
95+
<div class="header">
96+
<img src="https://devdisplay.vercel.app/logo.png" alt="DevDisplay Logo" />
97+
</div>
98+
99+
<div class="hero-icon-box">
100+
<img src="https://cdn-icons-png.flaticon.com/512/845/845646.png" alt="Verified Icon" />
101+
</div>
102+
103+
<div class="content">
104+
<h1>🎉 Congratulations, Ashutosh!</h1>
105+
<p>
106+
Your profile has been officially <strong>verified</strong> on <strong>DevDisplay</strong>!<br />
107+
You've shown consistency, skill, and dedication with your portfolio and 5+ projects.
108+
</p>
109+
<p>
110+
We’re excited to have you as a trusted part of the global tech ecosystem. You’ve earned the Blue Tick badge —
111+
wear it with pride!
112+
</p>
113+
<a href="https://devdisplay.vercel.app" class="btn btn-custom">Visit Your Profile</a>
114+
</div>
115+
116+
<div class="footer">
117+
<p style="color: #999">Stay connected with the DevDisplay community</p>
118+
<div class="social-icons">
119+
<a href="https://discord.gg/devdisplay"
120+
><img src="https://cdn-icons-png.flaticon.com/512/2111/2111370.png" alt="Discord"
121+
/></a>
122+
<a href="https://linkedin.com/company/devdisplay"
123+
><img src="https://cdn-icons-png.flaticon.com/512/145/145807.png" alt="LinkedIn"
124+
/></a>
125+
<a href="https://instagram.com/devdisplay"
126+
><img src="https://cdn-icons-png.flaticon.com/512/2111/2111463.png" alt="Instagram"
127+
/></a>
128+
<a href="https://twitter.com/devdisplay"
129+
><img src="https://cdn-icons-png.flaticon.com/512/733/733579.png" alt="Twitter"
130+
/></a>
131+
<a href="https://github.com/codeaashu/devdisplay"
132+
><img src="https://cdn-icons-png.flaticon.com/512/733/733553.png" alt="GitHub"
133+
/></a>
134+
</div>
135+
<p style="margin-top: 12px; font-size: 14px; color: #666">
136+
DevDisplay © 2025 | Built for developers, by developers.
137+
</p>
138+
</div>
139+
</div>
140+
</body>
141+
</html>

public/VP.png

991 KB
Loading

0 commit comments

Comments
 (0)