Skip to content

Commit 114d4e9

Browse files
Merge pull request #19 from Sachinchaurasiya360/feature/ai-job-match
added resend reply
2 parents d535d6e + 324a097 commit 114d4e9

19 files changed

Lines changed: 1839 additions & 76 deletions

client/index.html

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,12 @@
66

77
<!-- Primary Meta Tags -->
88
<title>InternHack — AI-Powered Career Platform for Students</title>
9-
<meta
10-
name="title"
11-
content="InternHack — AI-Powered Career Platform for Students"
12-
/>
139
<meta
1410
name="description"
1511
content="Browse curated internships, score your resume with AI-powered ATS analysis, follow guided career roadmaps, explore companies, and connect directly with recruiters — all in one platform."
1612
/>
17-
<meta
18-
name="keywords"
19-
content="internship, jobs, career, resume, ATS score, career roadmap, job board, recruiter, student jobs, campus placement, AI resume checker, internship portal, career path, company explorer, resume builder, cover letter, job search, placement, hiring"
20-
/>
2113
<meta name="author" content="InternHack" />
2214
<meta name="robots" content="index, follow" />
23-
<meta name="language" content="English" />
24-
<meta name="revisit-after" content="3 days" />
2515
<meta name="theme-color" content="#030712" />
2616

2717
<!-- Favicon -->
@@ -39,7 +29,7 @@
3929
property="og:description"
4030
content="Browse curated internships, score your resume with AI-powered ATS analysis, follow guided career roadmaps, and connect with recruiters."
4131
/>
42-
<meta property="og:image" content="/og-image.png" />
32+
<meta property="og:image" content="https://www.internhack.xyz/og-image.png" />
4333
<meta property="og:site_name" content="InternHack" />
4434
<meta property="og:locale" content="en_US" />
4535

@@ -54,15 +44,11 @@
5444
name="twitter:description"
5545
content="Browse curated internships, score your resume with AI-powered ATS analysis, follow guided career roadmaps, and connect with recruiters."
5646
/>
57-
<meta name="twitter:image" content="/og-image.png" />
47+
<meta name="twitter:image" content="https://www.internhack.xyz/og-image.png" />
5848

5949
<!-- Canonical -->
6050
<link rel="canonical" href="https://www.internhack.xyz/" />
6151

62-
<!-- hreflang -->
63-
<link rel="alternate" hreflang="en" href="https://www.internhack.xyz/" />
64-
<link rel="alternate" hreflang="x-default" href="https://www.internhack.xyz/" />
65-
6652
<!-- Structured Data (JSON-LD) -->
6753
<script type="application/ld+json">
6854
{
@@ -76,15 +62,19 @@
7662
"offers": {
7763
"@type": "Offer",
7864
"price": "0",
79-
"priceCurrency": "USD"
65+
"priceCurrency": "INR"
8066
},
8167
"featureList": [
8268
"AI-Powered ATS Resume Scoring",
8369
"Curated Internship Job Board",
8470
"Career Roadmap Guidance",
8571
"Company Explorer",
8672
"Recruiter Dashboard",
87-
"External Job Aggregation"
73+
"External Job Aggregation",
74+
"Free Coding Tutorials",
75+
"DSA Practice Tracker",
76+
"AI Cover Letter Generator",
77+
"LaTeX Resume Builder"
8878
]
8979
}
9080
</script>
@@ -93,31 +83,41 @@
9383
<script type="application/ld+json">
9484
{
9585
"@context": "https://schema.org",
96-
"@type": "Organization",
86+
"@type": ["Organization", "EducationalOrganization"],
9787
"name": "InternHack",
9888
"url": "https://www.internhack.xyz",
9989
"logo": "https://www.internhack.xyz/favicon.png",
100-
"description": "AI-powered career platform connecting students with internships and career tools."
90+
"description": "AI-powered career platform connecting students with internships, coding tutorials, and career tools.",
91+
"sameAs": []
10192
}
10293
</script>
10394

104-
<!-- Fonts -->
95+
<!-- DNS Prefetch for external domains -->
96+
<link rel="dns-prefetch" href="https://fonts.googleapis.com" />
97+
<link rel="dns-prefetch" href="https://fonts.gstatic.com" />
98+
<link rel="dns-prefetch" href="https://www.googletagmanager.com" />
99+
100+
<!-- Fonts (non-blocking) -->
105101
<link rel="preconnect" href="https://fonts.googleapis.com" />
106102
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
107103
<link
108-
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap"
104+
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap"
109105
rel="stylesheet"
106+
media="print"
107+
onload="this.media='all'"
110108
/>
109+
<noscript>
110+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap" rel="stylesheet" />
111+
</noscript>
111112
</head>
112113
<!-- Google tag (gtag.js) -->
113-
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4YT8LFNN50"></script>
114-
<script>
115-
window.dataLayer = window.dataLayer || [];
116-
function gtag(){dataLayer.push(arguments);}
117-
gtag('js', new Date());
118-
119-
gtag('config', 'G-4YT8LFNN50');
120-
</script>
114+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4YT8LFNN50"></script>
115+
<script>
116+
window.dataLayer = window.dataLayer || [];
117+
function gtag(){dataLayer.push(arguments);}
118+
gtag('js', new Date());
119+
gtag('config', 'G-4YT8LFNN50');
120+
</script>
121121
<body>
122122
<div id="root"></div>
123123
<script type="module" src="/src/main.tsx"></script>

0 commit comments

Comments
 (0)