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

yarn.lock

Lines changed: 28 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -114,17 +114,29 @@
114114
resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz"
115115
integrity sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==
116116

117-
117+
118+
version "1.0.0"
119+
resolved "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.0.tgz"
120+
integrity sha512-naldaJy4hSVhWBgEjfdBY85CAa4UO+W1nx6a1sWStHZ7EUfNiuBTTN2KUYT5dH1+p/xij1t2QSXfCiFJoC5S/Q==
121+
122+
123+
version "1.0.0"
124+
resolved "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.0.tgz"
125+
integrity sha512-FW8iK6rJrg+X2jKD0Ajhjv6y74lToIBEvkZhl42nZt563FfxkCYacrXZtd+q/sRQDypQLzY5WdLkVTbJoPyqNg==
126+
127+
118128
version "0.33.1"
119-
resolved "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.1.tgz"
120-
integrity sha512-esr2BZ1x0bo+wl7Gx2hjssYhjrhUsD88VQulI0FrG8/otRQUOxLWHMBd1Y1qo2Gfg2KUvXNpT0ASnV9BzJCexw==
129+
resolved "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.1.tgz"
130+
integrity sha512-4y8osC0cAc1TRpy02yn5omBeloZZwS62fPZ0WUAYQiLhSFSpWJfY/gMrzKzLcHB9ulUV6ExFiu2elMaixKDbeg==
121131
optionalDependencies:
122-
"@img/sharp-libvips-darwin-arm64" "1.0.0"
132+
"@img/sharp-libvips-linux-x64" "1.0.0"
123133

124-
125-
version "1.0.0"
126-
resolved "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.0.tgz"
127-
integrity sha512-VzYd6OwnUR81sInf3alj1wiokY50DjsHz5bvfnsFpxs5tqQxESoHtJO6xyksDs3RIkyhMWq2FufXo6GNSU9BMw==
134+
135+
version "0.33.1"
136+
resolved "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.1.tgz"
137+
integrity sha512-LOGKNu5w8uu1evVqUAUKTix2sQu1XDRIYbsi5Q0c/SrXhvJ4QyOx+GaajxmOg5PZSsSnCYPSmhjHHsRBx06/wQ==
138+
optionalDependencies:
139+
"@img/sharp-libvips-linuxmusl-x64" "1.0.0"
128140

129141
"@isaacs/cliui@^8.0.2":
130142
version "8.0.2"
@@ -182,10 +194,15 @@
182194
dependencies:
183195
glob "7.1.7"
184196

185-
"@next/swc-darwin-arm64@14.0.3":
197+
"@next/swc-linux-x64-gnu@14.0.3":
186198
version "14.0.3"
187-
resolved "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.0.3.tgz"
188-
integrity sha512-64JbSvi3nbbcEtyitNn2LEDS/hcleAFpHdykpcnrstITFlzFgB/bW0ER5/SJJwUPj+ZPY+z3e+1jAfcczRLVGw==
199+
resolved "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.0.3.tgz"
200+
integrity sha512-VM1aE1tJKLBwMGtyBR21yy+STfl0MapMQnNrXkxeyLs0GFv/kZqXS5Jw/TQ3TSUnbv0QPDf/X8sDXuMtSgG6eg==
201+
202+
203+
version "14.0.3"
204+
resolved "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.0.3.tgz"
205+
integrity sha512-64EnmKy18MYFL5CzLaSuUn561hbO1Gk16jM/KHznYP3iCIfF9e3yULtHaMy0D8zbHfxset9LTOv6cuYKJgcOxg==
189206

190207
"@nodelib/[email protected]":
191208
version "2.1.5"
@@ -2046,11 +2063,6 @@ fs.realpath@^1.0.0:
20462063
resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
20472064
integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
20482065

2049-
fsevents@~2.3.2:
2050-
version "2.3.3"
2051-
resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz"
2052-
integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==
2053-
20542066
function-bind@^1.1.1, function-bind@^1.1.2:
20552067
version "1.1.2"
20562068
resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz"

0 commit comments

Comments
 (0)