-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (98 loc) · 4.18 KB
/
index.html
File metadata and controls
107 lines (98 loc) · 4.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vishal Gorai | Home</title>
<link rel="icon" href="./assets/favicon.jpg" type="image/jpeg" />
<link rel="shortcut icon" href="./assets/favicon.jpg" type="image/jpeg" />
<link rel="apple-touch-icon" href="./assets/favicon.jpg" />
<link rel="stylesheet" href="./v2.css" />
<script src="./v2.js" defer></script>
</head>
<body>
<header class="site-header">
<div class="container header-inner">
<a class="brand" href="./index.html">vishalgorai</a>
<div class="header-right">
<div class="nav-backdrop" id="nav-backdrop" aria-hidden="true"></div>
<nav class="nav-panel" id="nav-panel" aria-label="Primary">
<button type="button" class="nav-close" id="nav-close" aria-label="Close menu">✕</button>
<ul class="nav-links">
<li><a class="active" href="./index.html">Home</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./experience.html">Experience</a></li>
<li><a href="./career.html">Career</a></li>
<li><a href="./blogs.html">Blogs</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</nav>
<div class="header-actions">
<button
type="button"
id="nav-toggle"
class="nav-toggle"
aria-expanded="false"
aria-controls="nav-panel"
aria-label="Open menu"
>
<span class="nav-toggle-bar"></span>
<span class="nav-toggle-bar"></span>
<span class="nav-toggle-bar"></span>
</button>
<button id="theme-toggle" class="theme-toggle" type="button">☾ Dark</button>
</div>
</div>
</div>
</header>
<main class="container">
<section class="hero">
<p class="eyebrow">Engineering, Software Systems, and AI.</p>
<h1>Hey, Myself Vishal.</h1>
<p class = "section__text__p2">I am a Developer</p>
<p class="intro">
I am a software engineer with 4.5 years of experience building scalable
backend systems, event-driven platforms, and practical engineering workflows.
I work primarily with Java, Python, and distributed architecture.
</p>
<div class="cta-row">
<a class="btn primary" href="./about.html">Explore Portfolio</a>
<a class="btn" href="./assets/vishal-gorai-resume.pdf">Download Resume</a>
<a class="btn" href="./blogs.html">Read Blogs</a>
</div>
<div class="hero-social">
<a class="btn" href="https://github.com/greyhatlinux/">Github</a>
</div>
</section>
<section class="section">
<h2 class="icon-title"><span>✦</span> Quick Snapshot</h2>
<div class="grid two-col">
<div>
<p><strong>Current Role:</strong> Software Development Engineer 2 at Tata CliQ Luxury</p>
<p><strong>Focus Areas:</strong> Distributed systems, microservices, Kafka, backend optimization, AI</p>
<p><strong>Location:</strong> Bangalore, India</p>
<p><strong>Past:</strong> Fastenal India (Software Developer - 3 years)</p>
<p><strong>Education:</strong> B.Tech, Birla Institute of Technology, Mesra</p>
<p><strong>Also Into:</strong> Writing, security learning, engineering craftsmanship</p>
</div>
</div>
</section>
</main>
<footer class="container footer">
<p>© 2026 Vishal Gorai</p>
<p>Portfolio v2</p>
</footer>
<script src="script.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.10/typed.min.js"></script>
<script>
var typed = new Typed(".section__text__p2", {
strings:["I am a Developer", "I am a Writer", "I am a Thinker", "I am a Builder", "I am a Coder", "I am a Hacker"],
typeSpeed:70,
backSpeed:70,
loop:true,
showCursor: false,
shuffle: true
});
</script>
</body>
</html>