Skip to content

Commit 8db797e

Browse files
change the razorpay to dod payment
2 parents 064fc8d + fa7a6e2 commit 8db797e

255 files changed

Lines changed: 42642 additions & 3620 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.claude/1800+ IT-HR @AL.pdf

3.21 MB
Binary file not shown.

.claude/Professors IIT.xlsx

222 KB
Binary file not shown.

.claude/settings.local.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"Bash(/c/Codes/internhack/server/src/module/recruiter/recruiter.service.ts:*)",
77
"Bash(npx tsc:*)",
88
"Bash(echo:*)",
9-
"Bash(npx prisma db push:*)",
9+
"Bash(npx prisma db push:*)",
1010
"Bash(npx prisma generate:*)",
1111
"Bash(npm run dev:*)",
1212
"Bash(node -e:*)",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,5 +137,5 @@ cd client && npm run build
137137
| `/api/stats` | Public platform stats | Public |
138138

139139

140-
integrate the s3 bucket where student can upload their resume into the resume section
140+
141141

client/src/App.tsx

Lines changed: 182 additions & 110 deletions
Large diffs are not rendered by default.

client/src/components/CTASection.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export function CTASection() {
1111
whileInView={{ opacity: 1, y: 0 }}
1212
viewport={{ once: true }}
1313
transition={{ duration: 0.6 }}
14-
className="relative rounded-3xl bg-gray-950 p-10 md:p-16 text-center overflow-hidden"
14+
className="relative rounded-3xl bg-gray-950 p-6 sm:p-10 md:p-16 text-center overflow-hidden"
1515
>
1616
{/* Background decoration - inside dark bg, no dark variants needed */}
1717
<div className="absolute inset-0 overflow-hidden pointer-events-none">
@@ -42,7 +42,7 @@ export function CTASection() {
4242
<motion.button
4343
whileHover={{ scale: 1.03, y: -2 }}
4444
whileTap={{ scale: 0.98 }}
45-
className="px-8 py-4 bg-white text-gray-950 text-base font-semibold rounded-2xl hover:bg-gray-100 transition-all shadow-lg flex items-center gap-2"
45+
className="px-6 py-3 sm:px-8 sm:py-4 bg-white text-gray-950 text-base font-semibold rounded-2xl hover:bg-gray-100 transition-all shadow-lg flex items-center gap-2"
4646
>
4747
Create Free Account
4848
<ArrowRight className="w-4 h-4" />
@@ -52,7 +52,7 @@ export function CTASection() {
5252
<motion.button
5353
whileHover={{ scale: 1.03, y: -2 }}
5454
whileTap={{ scale: 0.98 }}
55-
className="px-8 py-4 bg-white/10 text-white text-base font-semibold rounded-2xl border border-white/20 hover:bg-white/20 transition-all"
55+
className="px-6 py-3 sm:px-8 sm:py-4 bg-white/10 text-white text-base font-semibold rounded-2xl border border-white/20 hover:bg-white/20 transition-all"
5656
>
5757
Explore Roadmaps
5858
</motion.button>

client/src/components/ContributionGraphs.tsx

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,16 @@ interface LeetCodeData {
1717
calendar: Activity[];
1818
}
1919

20+
function emptyYearCalendar(): Activity[] {
21+
const now = new Date();
22+
const start = new Date(now.getFullYear(), 0, 1);
23+
const entries: Activity[] = [];
24+
for (let d = new Date(start); d <= now; d.setDate(d.getDate() + 1)) {
25+
entries.push({ date: d.toISOString().split("T")[0]!, count: 0, level: 0 });
26+
}
27+
return entries;
28+
}
29+
2030
interface Props {
2131
githubUsername?: string;
2232
leetcodeUsername?: string;
@@ -122,7 +132,7 @@ export default function ContributionGraphs({ githubUsername, leetcodeUsername, s
122132
<>
123133
<div className="overflow-x-auto pb-2">
124134
<ActivityCalendar
125-
data={leetcodeData.calendar}
135+
data={leetcodeData.calendar.length > 0 ? leetcodeData.calendar : emptyYearCalendar()}
126136
colorScheme="light"
127137
fontSize={11}
128138
blockSize={10}

client/src/components/FeaturesSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const cardVariants = {
4646
visible: {
4747
opacity: 1,
4848
y: 0,
49-
transition: { duration: 0.5, ease: [0.22, 1, 0.36, 1] },
49+
transition: { duration: 0.5, ease: [0.22, 1, 0.36, 1] as [number, number, number, number] },
5050
},
5151
};
5252

client/src/components/Footer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export function Footer() {
4040
<footer className="bg-gray-950 text-white pt-16 pb-8 px-6">
4141
<div className="max-w-6xl mx-auto">
4242
{/* Newsletter Banner */}
43-
<div className="relative rounded-2xl bg-white/5 border border-white/10 p-8 md:p-10 mb-14 overflow-hidden">
43+
<div className="relative rounded-2xl bg-white/5 border border-white/10 p-5 sm:p-8 md:p-10 mb-14 overflow-hidden">
4444
<div className="absolute -top-20 -right-20 w-60 h-60 rounded-full bg-indigo-500/10 blur-3xl pointer-events-none" />
4545
<div className="relative z-10 flex flex-col md:flex-row items-center gap-6">
4646
<div className="flex-1">
@@ -69,7 +69,7 @@ export function Footer() {
6969
onChange={(e) => { setEmail(e.target.value); setError(""); }}
7070
placeholder="your@email.com"
7171
required
72-
className="px-4 py-2.5 bg-white/10 border border-white/10 rounded-xl text-sm text-white placeholder-gray-500 focus:outline-none focus:border-white/30 transition-colors w-60"
72+
className="px-4 py-2.5 bg-white/10 border border-white/10 rounded-xl text-sm text-white placeholder-gray-500 focus:outline-none focus:border-white/30 transition-colors w-full sm:w-60"
7373
/>
7474
<button
7575
type="submit"

client/src/components/HeroSection.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ export function HeroSection() {
4343
}}
4444
/>
4545

46-
<div className="relative z-10 max-w-6xl mx-auto px-6 pt-32 pb-20 text-center">
46+
<div className="relative z-10 max-w-6xl mx-auto px-4 sm:px-6 pt-24 sm:pt-32 pb-16 sm:pb-20 text-center">
4747
<motion.h1
4848
custom={0}
4949
initial="hidden"
5050
animate="visible"
5151
variants={fadeInUp}
52-
className="font-display text-5xl sm:text-7xl md:text-[5.5rem] font-bold leading-[1.05] tracking-tight text-gray-950 dark:text-white mb-6"
52+
className="font-display text-3xl sm:text-5xl md:text-7xl font-bold leading-[1.05] tracking-tight text-gray-950 dark:text-white mb-6"
5353
>
5454
Your career starts
5555
<br />

0 commit comments

Comments
 (0)