-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.ts
More file actions
78 lines (76 loc) · 2.98 KB
/
constants.ts
File metadata and controls
78 lines (76 loc) · 2.98 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
import { Project, Skill, Experience } from './types';
export const PORTFOLIO_DATA = {
name: "Trishit Majumdar",
role: "Android Developer & Web Explorer",
about: "I am Trishit Majumdar, an Android Developer passionate about Kotlin Multiplatform and Modern Web Development. I bridge the gap between mobile and web using technologies like Jetpack Compose, Kobweb, and React. Currently pursuing B.Tech in CS while building scalable apps.",
location: "West Bengal, India",
socials: {
github: "github.com/Quantum3600",
linkedin: "linkedin.com/in/trishit-majumdar-008344281",
twitter: "twitter.com/Trishit18", // Placeholder for X/Twitter
email: "trishitquantum360@gmail.com",
instagram: "instagram.com/com.trishit.quantum360", // Placeholder
facebook: "facebook.com/com.trishit.quantum360" // Placeholder
},
projects: [
{
id: "1",
title: "KobGames Store",
description: "A modern web game store interface built with Kobweb, showcasing the power of Kotlin on the web.",
tech: ["Kobweb", "Kotlin", "Compose HTML"],
link: "https://github.com/Quantum3600/KobGames-Store",
year: "2025"
},
{
id: "2",
title: "WakeApp",
description: "A smart alarm Android application designed to ensure you wake up on time with intuitive UI patterns.",
tech: ["Android", "Kotlin", "Jetpack Compose"],
link: "https://github.com/Quantum3600/WakeApp",
year: "2025"
},
{
id: "3",
title: "Quotd",
description: "A minimalistic quotes application delivering daily inspiration with a focus on Material Design.",
tech: ["Android", "Kotlin", "MVVM"],
link: "https://github.com/Quantum3600/Quotd",
year: "2025"
}
] as Project[],
skills: [
{ category: "Android/KMP", items: ["Kotlin", "Jetpack Compose", "Kobweb", "Ktor Mobile"] },
{ category: "Frontend", items: ["React", "TypeScript", "Tailwind", "HTML/CSS"] },
{ category: "Backend", items: ["Node.js", "Spring Boot", "Java", "Ktor Server", "MongoDB"] },
{ category: "Tools/AI", items: ["Git", "Docker", "Figma", "Gemini", "TensorFlow"] }
] as Skill[],
education: [
{
id: "e1",
role: "B.Tech in Computer Science",
company: "Hooghly Engineering & Technology College",
period: "Present",
description: "Pursuing Bachelor of Technology in Computer Science & Engineering."
},
{
id: "e2",
role: "Higher Secondary",
company: "Hooghly Collegiate School",
period: "Completed",
description: "Completed Higher Secondary education with focus on Science."
},
{
id: "e3",
role: "Secondary Education",
company: "St. John's School",
period: "Completed",
description: "Foundation laid at primary and middle school level."
}
] as Experience[]
};
export const INITIAL_TERMINAL_LOGS = [
"Welcome to TrishitOS v1.0.0",
"Initializing Android Runtime...",
"Loading Kotlin Multiplatform modules...",
"System ready. Type 'help' for commands."
];