-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconifg.ts
138 lines (131 loc) · 4.94 KB
/
conifg.ts
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
import { title } from "process";
export const NEXT_PUBLIC_SERVICE_ID = "service_iobuoih";
export const NEXT_PUBLIC_TEMPLATE_ID = "template_7s6ocno";
export const NEXT_PUBLIC_PUBLIC_KEY = "H0uSpMacNAFhSdszk";
interface ProjectDetailstype {
id: number;
title: string;
description: string[];
href: string;
projecttitle: string;
bgurl: string;
Techstack: string[];
}
export const ProjectDetails: ProjectDetailstype[] = [
{id : 1,
title:"Summr-ai",
description:[
`Developed a SaaS platform using the T3 stack and tRPC, enabling users to manage GitHub projects by
integrating Octokit for commit polling and Gemini API for summarization.`,
`Implemented AI-driven summarization for repository files and folders, with vector embeddings stored in
PostgreSQL for advanced query resolution.`,
`Integrated Assembly API for accurate audio meeting summaries and chapter generation.`,
`Built a credit-based payment system with Stripe for scalable monetization.`,
`Delivered a robust, AI-powered solution showcasing expertise in full-stack development and cuttingedge technologies.`
],
href:"https://summr-ai.vercel.app/dashboard",
projecttitle:"Summr-ai",
bgurl:'/Summr-ai.png',
Techstack:[
"Next.js 15",
"Tailwind",
"Postgres",
"TRPC",
"Gemini API",
"Assembly API",
"Stripe"
]
},
{
id:2,
title:"HarmonyHub",
description:[
`Built a real-time chat app with Socket.IO, enabling live user tracking and messaging.`,
`Secured authentication using JWT for safe and efficient access.`,
`Implemented debounced dynamic search, optimizing performance and user experience.`,
`Designed a responsive React frontend, ensuring smooth navigation across devices.`
],
href:"https://harmony-hub-nine.vercel.app/",
projecttitle:"HarmonyHub",
bgurl:"/HarmonyHub.jpg",
Techstack:[
"React",
"Node.js",
"Express",
"MongoDB",
"Socket.io"
]
},
{
id: 3,
title: "OpenUp",
description: [
` Developed an engaging user experience with seamless infinite scrolling, intuitive pagination, and smooth content transitions, enabling users to effortlessly share and explore unlimited content.`,
`Optimized backend performance and database communication, resulting in faster load times and a highly responsive platform, enhancing overall user satisfaction.`,
`Delivered a scalable, user-centric platform that supports a growing community, fostering open discussions and idea-sharing with a focus on usability and accessibility.`,
],
href: "https://openup-ten.vercel.app/",
projecttitle: "OpenUp",
bgurl: "/Openup.png",
Techstack: [
"Postgres",
"CloudFlare Worker",
"React",
"Hono",
"TypeScript",
"Prisma",
"DaisyUI",
],
},
{
id:4,
title: "Portfolio",
description: [
`Showcased personal achievements through a visually stunning and interactive portfolio, highlighting expertise in creating engaging user experiences.`,
`Demonstrated deep proficiency in React by blending multiple components into a cohesive, dynamic presentation, reflecting advanced skills and innovative problem-solving.`,
`Enhanced user engagement with seamless navigation, smooth animations, and an integrated contact system, effectively communicating professional capabilities.`,
],
href: "https://rahul-soni.vercel.app/",
projecttitle: "Portfolio",
bgurl: "/Portfolio.png",
Techstack: [
"Nextjs",
"TypeScript",
"Tailwind",
"Framer Motion",
"Acerternity UI",
"Emailjs",
],
},
];
export const MiniProjectDetails = [
{
title:"TransactEase",
description: [
`Engineered a robust backend, enhancing performance and reliability.`,
`Implemented a fail-safe mechanism ensuring that if a transaction fails, any deducted amount is automatically refunded to the sender, reducing potential financial errors by 100%.`,
],
url:"https://payment-application.vercel.app/"
},
{
title: "Youtube Clone",
description: [
"Utilized React and Tailwind CSS to create a visually appealing YouTube-like interface.",
" Implemented dynamic routing with React Router for seamless navigation between pages.",
" This project demonstrates proficiency in React, Tailwind CSS, and React Router.",
],
url: "https://github.com/Rahulsoni9321/Youtube-clone",
},
{
title:"Dukaan-UI-clone",
description:[ "Dashboard of Dukaan web application made using React and Tailwind."," Built a clean UI with multiple reusable components."
],
url:"https://dukaan-fe-five.vercel.app/"
},
{
title:"Qid-clone",
description:[ "Built a multi page website static website leveraging react-router-dom for dynamic routes."," Cloned the website in a pixel perfect way. "
],
url:"https://qid-clone-xi.vercel.app"
},
];