Skip to content

Commit 1978a7f

Browse files
authored
Merge pull request #76 from sksmagr23/newch
make changes
2 parents 27824b4 + f26bbe5 commit 1978a7f

File tree

11 files changed

+216
-44
lines changed

11 files changed

+216
-44
lines changed

app/partners/page.tsx

Lines changed: 121 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React, { FunctionComponent } from "react";
22
import { Metadata } from "next";
33
import PartnerCard from "@/components/PartnerCard";
4-
import { titleSponsor, associateSponsor, ecosystemPartner, startupShowcasePartner, LearningPartner, startupServicesPartner, investmentPartners, travelPartner, poweredBy, eventPartner, martechPartner, incubationPartner, saasPartner, educationPartner, munchingPartner, logisticsPartner, gamingPartner, instituePartner } from "./partner_data";
4+
import { titleSponsor, associateSponsor, ecosystemPartner, startupShowcasePartner, LearningPartner, startupServicesPartner, investmentPartners, travelPartner, poweredBy, eventPartner, martechPartner, incubationPartner, saasPartner, educationPartner, munchingPartner, logisticsPartner, gamingPartner, instituePartner, techPartner, cotitleSponsor, platinumPartner } from "./partner_data";
55
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs";
66
import { color } from "framer-motion";
77

@@ -56,6 +56,27 @@ const page: FunctionComponent<Props> = (props) => {
5656
))}
5757
</div>
5858
</div>
59+
<div>
60+
<h1
61+
className={
62+
"text-white text-6xl m-4 flex justify-center font-semibold sm:py-6 "
63+
}
64+
>
65+
Co-Title Partner
66+
</h1>
67+
</div>
68+
<div className={"flex justify-center"}>
69+
<div className={"md:flex flex-wrap justify-center items-start p-10"}>
70+
{cotitleSponsor.map((speaker: any, index) => (
71+
<PartnerCard
72+
name={speaker.name}
73+
imgURL={speaker.imgURL}
74+
siteURL={speaker.siteURL}
75+
key={index}
76+
/>
77+
))}
78+
</div>
79+
</div>
5980
</div>
6081
{/* <div className="pt-24 justify-center w-full min-h-1 sm:text-center sm:text-base">
6182
<div>
@@ -153,7 +174,7 @@ const page: FunctionComponent<Props> = (props) => {
153174
"text-white text-6xl m-4 flex justify-center font-semibold sm:py-6"
154175
}
155176
>
156-
Learning Partner
177+
Learning Partners
157178
</h1>
158179
</div>
159180
<div className={"flex justify-center"}>
@@ -170,6 +191,79 @@ const page: FunctionComponent<Props> = (props) => {
170191
</div>
171192
</div>
172193

194+
195+
<div className="pt-24 justify-center w-full min-h-1 sm:text-center sm:text-base">
196+
<div>
197+
<h1
198+
className={
199+
"text-white text-6xl m-4 flex justify-center font-semibold sm:py-6"
200+
}
201+
>
202+
Tech Partner
203+
</h1>
204+
</div>
205+
<div className={"flex justify-center"}>
206+
<div className={"md:flex flex-wrap justify-center items-start p-10"}>
207+
{techPartner.map((speaker: any, index) => (
208+
<PartnerCard
209+
name={speaker.name}
210+
imgURL={speaker.imgURL}
211+
siteURL={speaker.siteURL}
212+
key={index}
213+
/>
214+
))}
215+
</div>
216+
</div>
217+
</div>
218+
219+
<div className="pt-24 justify-center w-full min-h-1 sm:text-center sm:text-base">
220+
<div>
221+
<h1
222+
className={
223+
"text-white text-6xl m-4 flex justify-center font-semibold sm:py-6"
224+
}
225+
>
226+
Platinum Partner
227+
</h1>
228+
</div>
229+
<div className={"flex justify-center"}>
230+
<div className={"md:flex flex-wrap justify-center items-start p-10"}>
231+
{platinumPartner.map((speaker: any, index) => (
232+
<PartnerCard
233+
name={speaker.name}
234+
imgURL={speaker.imgURL}
235+
siteURL={speaker.siteURL}
236+
key={index}
237+
/>
238+
))}
239+
</div>
240+
</div>
241+
</div>
242+
243+
<div className="pt-24 justify-center w-full min-h-1 sm:text-center sm:text-base">
244+
<div>
245+
<h1
246+
className={
247+
"text-white text-6xl m-4 flex justify-center font-semibold sm:py-6"
248+
}
249+
>
250+
Ecosystem Partner
251+
</h1>
252+
</div>
253+
<div className={"flex justify-center"}>
254+
<div className={"md:flex flex-wrap justify-center items-start p-10"}>
255+
{ecosystemPartner.map((speaker: any, index) => (
256+
<PartnerCard
257+
name={speaker.name}
258+
imgURL={speaker.imgURL}
259+
siteURL={speaker.siteURL}
260+
key={index}
261+
/>
262+
))}
263+
</div>
264+
</div>
265+
</div>
266+
173267

174268
<div className="pt-24 justify-center w-full min-h-1 sm:text-center sm:text-base">
175269
<div>
@@ -221,6 +315,31 @@ const page: FunctionComponent<Props> = (props) => {
221315
</div>
222316
</div>
223317

318+
<div className="pt-24 justify-center w-full min-h-1 sm:text-center sm:text-base">
319+
<div>
320+
<h1
321+
className={
322+
"text-white text-6xl m-4 flex justify-center font-semibold sm:py-6"
323+
}
324+
>
325+
Travel Partners
326+
</h1>
327+
</div>
328+
<div className={"flex justify-center"}>
329+
<div className={"md:flex flex-wrap justify-center items-start p-10"}>
330+
{travelPartner.map((speaker: any, index) => (
331+
<PartnerCard
332+
name={speaker.name}
333+
imgURL={speaker.imgURL}
334+
siteURL={speaker.siteURL}
335+
key={index}
336+
337+
/>
338+
))}
339+
</div>
340+
</div>
341+
</div>
342+
224343

225344

226345

app/partners/partner_data.ts

Lines changed: 57 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,13 @@ export const titleSponsor = [
6262
siteURL: "https://www.iitbhufoundation.org/",
6363
},
6464
];
65+
export const cotitleSponsor = [
66+
{
67+
name: "SBI",
68+
imgURL: "/partners/SBI.png",
69+
siteURL: "https://sbi.co.in/web/personal-banking/home",
70+
}
71+
];
6572
export const coSponsor = [
6673
{
6774
name: "Saviant Consulting",
@@ -76,22 +83,31 @@ export const associateSponsor = [
7683
siteURL: "https://ichelonconsulting.com/",
7784
},
7885
];
86+
// export const ecosystemPartner = [
87+
// {
88+
// name: "Meity Startup Hub",
89+
// imgURL: "/partners/meity_startup_hub_logo.jpg",
90+
// siteURL: "https://sarasai.org/",
91+
// },
92+
// {
93+
// name: "Startup India",
94+
// imgURL: "/partners/4_startup_india_logo.jpg",
95+
// siteURL: "https://sarasai.org/",
96+
// },
97+
// {
98+
// name: "markkoknow",
99+
// imgURL: "/partners/markoknow.png",
100+
// siteURL: "https://sarasai.org/",
101+
// },
102+
// ];
103+
104+
79105
export const ecosystemPartner = [
80106
{
81-
name: "Meity Startup Hub",
82-
imgURL: "/partners/meity_startup_hub_logo.jpg",
83-
siteURL: "https://sarasai.org/",
84-
},
85-
{
86-
name: "Startup India",
87-
imgURL: "/partners/4_startup_india_logo.jpg",
88-
siteURL: "https://sarasai.org/",
89-
},
90-
{
91-
name: "markkoknow",
92-
imgURL: "/partners/markoknow.png",
93-
siteURL: "https://sarasai.org/",
94-
},
107+
name: "Indian Accelerator",
108+
imgURL: "/partners/indian_accelerator.png",
109+
siteURL: "https://www.indiaaccelerator.co/",
110+
}
95111
];
96112

97113
export const startupShowcasePartner = [
@@ -107,6 +123,11 @@ export const LearningPartner = [
107123
imgURL: "/partners/ims.png",
108124
siteURL: "https://www.imsindia.com/",
109125
},
126+
{
127+
name: "VSKILLS",
128+
imgURL: "/partners/v_skills.png",
129+
siteURL: "https://www.vskills.in/certification/",
130+
},
110131
];
111132

112133
export const startupServicesPartner = [
@@ -277,14 +298,15 @@ export const travelPartner = [
277298
{
278299
name: "AbhiBus",
279300
imgURL: "/partners/abhi_bus.jpg",
280-
siteURL: "https://sarasai.org/",
301+
siteURL: "https://www.abhibus.com/",
281302
},
282303
{
283304
name: "ixigo",
284305
imgURL: "/partners/ixigo.jpg",
285-
siteURL: "https://sarasai.org/",
306+
siteURL: "https://www.ixigo.com/",
286307
},
287308
];
309+
288310
export const logisticsPartner = [
289311
{
290312
name: "Safexpress",
@@ -364,10 +386,28 @@ export const gamingPartner = [
364386
siteURL: "https://sarasai.org/",
365387
},
366388
]
367-
export const instituePartner = [
389+
export const instituePartner = [
368390
{
369391
name: "Ashoka University",
370392
imgURL: "/partners/ashoka_vns_ps.png",
371393
siteURL: "https://ashokainstitute.com/",
372394
},
373395
];
396+
397+
398+
399+
export const techPartner = [
400+
{
401+
name: "BitsandBytes",
402+
imgURL: "/partners/b&b.png",
403+
siteURL: "https://www.bitsandbyte.net/",
404+
},
405+
];
406+
407+
export const platinumPartner = [
408+
{
409+
name: "ICICI",
410+
imgURL: "/partners/icici.png",
411+
siteURL: "https://www.icicibank.com/",
412+
},
413+
];

app/recommendations/book_data.ts

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,21 @@ Her journey is a blend of rich family heritage, personal achievements, and globa
1010
Archana's life is filled with vibrant experiences—from volunteering for differently-abled children to supporting her son through his challenges. Her story reflects resilience, gratitude, and a relentless drive to make a meaningful impact.`,
1111
reviews: [
1212
{
13-
reviewer: "John Doe",
14-
comment: "A classic tale of love and loss.",
13+
reviewer: "Rohit Verma",
14+
comment: "A deeply inspiring narrative that beautifully captures Archana Mehrotra’s journey of resilience, community leadership, and personal growth.",
1515
rating: 5,
1616
},
1717
{
18-
reviewer: "John Doe",
19-
comment: "A classic tale of love and loss.",
20-
rating: 4,
18+
reviewer: "Ananya Sharma",
19+
comment: "The autobiography blends rich family heritage with modern achievements seamlessly.",
20+
rating: 4.5,
2121
},
2222
{
23-
reviewer: "John Doe",
24-
comment: "A classic tale of love and loss.",
25-
rating: 5,
23+
reviewer: "Siddharth Jain",
24+
comment: "A heartfelt and honest account of a life well-lived.",
25+
rating: 4.8,
2626
},
27+
2728
],
2829
imgURL: "https://m.media-amazon.com/images/I/710angGC0vL._AC_UY436_QL65_.jpg",
2930
},

components/Navbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const nav = [
5656
},
5757
{
5858
name: "RECOMMENDATIONS",
59-
link: "/recommendations",
59+
link: "/recommendations/0",
6060
},
6161
// {
6262
// name: "STARTUP EXPO",

public/partners/SBI.png

40.3 KB
Loading

public/partners/b&b.png

27.4 KB
Loading

public/partners/icici.png

15.1 KB
Loading
8.06 KB
Loading

public/partners/ixigo.png

16.3 KB
Loading

public/partners/v_skills.png

11.7 KB
Loading

0 commit comments

Comments
 (0)