-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (52 loc) · 2.59 KB
/
index.html
File metadata and controls
57 lines (52 loc) · 2.59 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
<!doctype html>
<html lang="en" class="h-full">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
<!-- Primary Meta Tags -->
<title>Angular Senior Interview Prep - 100 Essential Questions</title>
<meta name="title" content="Angular Senior Interview Prep - 100 Essential Questions" />
<meta
name="description"
content="Master your next Angular senior interview with 100 curated questions covering Signals, RxJS, NgRx, Forms, Performance, and more. Practice with bookmarks, search, and progress tracking."
/>
<meta
name="keywords"
content="Angular, Interview, Senior, Developer, TypeScript, RxJS, NgRx, Signals, Questions"
/>
<meta name="author" content="Angular Interview Prep" />
<!-- PWA -->
<link rel="manifest" href="/manifest.json" />
<meta name="theme-color" content="#2563eb" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#1e40af" media="(prefers-color-scheme: dark)" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="Angular Prep" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://angular-interview-prep.vercel.app/" />
<meta property="og:title" content="Angular Senior Interview Prep - 100 Essential Questions" />
<meta
property="og:description"
content="Master your next Angular senior interview with 100 curated questions. Practice with modern UI, search, bookmarks, and progress tracking."
/>
<meta property="og:image" content="/og-image.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://angular-interview-prep.vercel.app/" />
<meta property="twitter:title" content="Angular Senior Interview Prep" />
<meta
property="twitter:description"
content="100 curated Angular interview questions for senior positions"
/>
<meta property="twitter:image" content="/og-image.png" />
<!-- Preconnect for performance -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
</head>
<body class="h-full bg-gray-50 text-gray-900 dark:bg-gray-900 dark:text-gray-100">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>