-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
240 lines (237 loc) · 9.92 KB
/
index.html
File metadata and controls
240 lines (237 loc) · 9.92 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
<!doctype html>
<html lang="en">
<head>
<!--
TechNEXT shell page: SEO/meta, fonts, and global CSS. Page content is not duplicated here—it is rendered by `js/router.js` into <main id="app">.
Original tutorial inspiration: Brian Design on YouTube (channel UCsKsymTY_4BYR-wytLjex7A).
-->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="TechNEXT — responsive tech landing page showcase: vanilla HTML, CSS, and JavaScript with client-side routing, scroll motion, and a Vercel-ready static build. Frontend fundamentals project by Arnob Mahmud."
/>
<meta
name="keywords"
content="TechNEXT, tech landing page, HTML, CSS, JavaScript, responsive design, vanilla JS, SPA routing, frontend fundamentals, web development, portfolio, Vercel, static site, Arnob Mahmud"
/>
<meta name="author" content="Arnob Mahmud" />
<meta name="contact" content="contact@arnobmahmud.com" />
<meta name="robots" content="index, follow" />
<meta name="theme-color" content="#0c0c0f" />
<link rel="author" href="https://www.arnobmahmud.com" />
<link rel="canonical" href="https://next-tech-ui.vercel.app/" />
<meta property="og:title" content="TechNEXT — Tech Landing Page | HTML, CSS & JavaScript Fundamentals Showcase" />
<meta
property="og:description"
content="Modern responsive landing page: vanilla HTML, CSS, and JavaScript with routing, motion, and deploy-ready build. Live demo of frontend fundamentals."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://next-tech-ui.vercel.app/" />
<meta property="og:site_name" content="TechNEXT" />
<meta property="og:locale" content="en_US" />
<meta
property="og:image"
content="https://next-tech-ui.vercel.app/public/favicon.svg"
/>
<meta property="og:image:alt" content="TechNEXT site icon" />
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="TechNEXT — Tech Landing Page | HTML, CSS & JavaScript Fundamentals"
/>
<meta
name="twitter:description"
content="Responsive tech landing page built with vanilla HTML, CSS, and JavaScript. Live demo & source."
/>
<meta
name="twitter:image"
content="https://next-tech-ui.vercel.app/public/favicon.svg"
/>
<title>TechNEXT — Tech Landing Page | HTML, CSS & JavaScript Fundamentals Showcase</title>
<link rel="icon" href="/public/favicon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/public/favicon.svg" />
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.14.0/css/all.css"
integrity="sha384-HzLeBuhoNPvSl5KYnjx0BT+WB0QEEqLprO+NBkkk5gbc67FTaL7XIGa2w1L0Xbgc"
crossorigin="anonymous"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,400;0,600;0,700;1,400&family=Sora:wght@500;600;700;800&display=swap"
rel="stylesheet"
/>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "TechNEXT — Tech Landing Page",
"alternateName": "Tech Landing Page – JavaScript, HTML, CSS Frontend Fundamentals Project 1",
"url": "https://next-tech-ui.vercel.app/",
"description": "Responsive tech landing page showcase with vanilla HTML, CSS, and JavaScript: SPA-style routing, animations, and Vercel-ready static build.",
"inLanguage": "en",
"author": {
"@type": "Person",
"name": "Arnob Mahmud",
"url": "https://www.arnobmahmud.com",
"email": "contact@arnobmahmud.com"
},
"publisher": {
"@type": "Person",
"name": "Arnob Mahmud",
"url": "https://www.arnobmahmud.com"
}
}
</script>
</head>
<body>
<!-- Skip link: first focusable control for keyboard users; jumps straight to dynamic main content. -->
<a class="skip-link" href="#app">Skip to main content</a>
<!-- Shell navigation: persists across SPA route changes (not inside #app). -->
<nav class="navbar navbar-shell" aria-label="Primary">
<div class="navbar__container max-w-9xl inner-padding">
<a href="/" id="navbar__logo" class="navbar__logo-link" aria-label="Tech / Next — Home">
<span class="navbar__logo-pad">
<i class="fas fa-gem" aria-hidden="true"></i>
<span class="site-wordmark">
<span class="site-wordmark__tech">Tech</span><span class="site-wordmark__sep" aria-hidden="true">/</span><span class="site-wordmark__next">Next</span>
</span>
</span>
</a>
<div class="navbar__toggle" id="mobile-menu" role="button" tabindex="0" aria-label="Open menu">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="navbar__menu">
<li class="navbar__item">
<a href="/" class="navbar__links">Home</a>
</li>
<li class="navbar__item">
<a href="/tech" class="navbar__links">Tech</a>
</li>
<li class="navbar__item">
<a href="/products" class="navbar__links">Products</a>
</li>
<li class="navbar__btn">
<div class="cta-shine-wrap cta-shine-wrap--nav">
<a href="/sign-up" class="button cta-shine-button btn-ripple">Sign Up</a>
</div>
</li>
</ul>
</div>
</nav>
<!-- SPA outlet: `js/router.js` injects each “page” as innerHTML here. aria-live politely announces updates to AT. -->
<main id="app" class="layout-main" aria-live="polite"></main>
<!-- Site footer: static shell; scroll-reveal handled once in `scroll-effects.js` (outside route swaps). -->
<div class="footer__container footer-reveal">
<div class="footer__links max-w-9xl inner-padding">
<div class="footer__link--wrapper">
<div class="footer__link--items">
<h2>About Us</h2>
<a href="/products">How it works</a>
<a href="/">Testimonials</a>
<a href="/">Careers</a>
<a href="/">Investments</a>
<a href="/">Terms of Service</a>
</div>
<div class="footer__link--items">
<h2>Contact Us</h2>
<a href="/">Contact</a>
<a href="/">Support</a>
<a href="/">Destinations</a>
<a href="/">Sponsorships</a>
</div>
</div>
<div class="footer__link--wrapper">
<div class="footer__link--items">
<h2>Videos</h2>
<a href="/">Submit Video</a>
<a href="/">Ambassadors</a>
<a href="/">Agency</a>
<a href="/">Influencer</a>
</div>
<div class="footer__link--items">
<h2>Social Media</h2>
<a href="/">Instagram</a>
<a href="/">Facebook</a>
<a href="/">Youtube</a>
<a href="/">Twitter</a>
</div>
</div>
</div>
<section class="social__media max-w-9xl inner-padding">
<div class="social__media--wrap">
<div class="footer__logo">
<a href="/" id="footer__logo" aria-label="Tech / Next — Home">
<i class="fas fa-gem" aria-hidden="true"></i>
<span class="site-wordmark site-wordmark--footer">
<span class="site-wordmark__tech">Tech</span><span class="site-wordmark__sep" aria-hidden="true">/</span><span class="site-wordmark__next">Next</span>
</span>
</a>
</div>
<p class="website__rights">© <span id="footer-year"></span>. All rights reserved.</p>
<div class="social__icons">
<a
class="social__icon--link"
href="https://www.google.com/"
target="_blank"
rel="noopener noreferrer"
aria-label="Facebook"
>
<i class="fab fa-facebook fab"></i>
</a>
<a
class="social__icon--link"
href="https://www.google.com/"
target="_blank"
rel="noopener noreferrer"
aria-label="Instagram"
>
<i class="fab fa-instagram insta"></i>
</a>
<a
class="social__icon--link"
href="https://www.google.com/"
target="_blank"
rel="noopener noreferrer"
aria-label="Youtube"
>
<i class="fab fa-youtube youtube"></i>
</a>
<a
class="social__icon--link"
href="https://www.google.com/"
target="_blank"
rel="noopener noreferrer"
aria-label="Twitter"
>
<i class="fab fa-twitter twitter"></i>
</a>
<a
class="social__icon--link"
href="https://www.google.com/"
target="_blank"
rel="noopener noreferrer"
aria-label="LinkedIn"
>
<i class="fab fa-linkedin linkedin"></i>
</a>
</div>
</div>
</section>
<div class="footer__credit max-w-9xl inner-padding">
<p class="unsplash-credit">
Photos from
<a href="https://unsplash.com" target="_blank" rel="noopener noreferrer">Unsplash</a>
(direct image URLs; no API key).
</p>
</div>
</div>
<!-- ES module entry: enables `import` in `main.js` and a clear dependency graph without a bundler. -->
<script type="module" src="js/main.js"></script>
</body>
</html>