Skip to content

Commit 9e40952

Browse files
authored
Merge pull request #749 from hackclub/add-special-prizes-marketing-page
2 parents 671f71b + 7cfa1f7 commit 9e40952

File tree

3 files changed

+71
-9
lines changed

3 files changed

+71
-9
lines changed

public/special1.png

182 KB
Loading

public/special2.png

155 KB
Loading

src/app/marketing/page.tsx

+71-9
Original file line numberDiff line numberDiff line change
@@ -395,17 +395,79 @@ export default async function Marketing() {
395395
<div className="flex flex-wrap justify-center items-center">
396396
<Prizes />
397397
</div>
398-
<div className="flex flex-col justify-center items-center mt-4 m-10">
399-
{/*<div className="bg-blue-500 rounded-md p-4 px-16 pop mb-2">
400-
<p className="text-3xl text-center">
401-
Get the full list of items when you sign in!
402-
</p>
403-
</div>*/}
404-
<p className="text-xl text-center mx-5 mb-5">
405-
This is just a sneak peak... new items will be added over the
406-
winter!
398+
<div className="flex flex-col justify-center items-center mt-0 md:mt-8 mx-4">
399+
<h3 className="text-3xl md:text-4xl mb-2">
400+
✨ Special Prizes ✨
401+
</h3>
402+
<p className="text-sm md:text-lg text-center">
403+
We'll pick a winner for each of these at the end,
404+
<br className="inline lg:hidden"></br> so get cracking now on
405+
something extra-awesome!
407406
</p>
408407
</div>
408+
<div className="flex flex-wrap justify-center items-center mt-4 m-10">
409+
<div className="relative p-6 px-4 rounded-lg m-4 pop">
410+
<img
411+
src="/shopback.svg"
412+
alt="card backs"
413+
className="absolute w-full h-full inset-0 object-cover opacity-80"
414+
/>{' '}
415+
<div className="relative my-2">
416+
<p className="flex justify-center text-center text-3xl px-4">
417+
1v1 call with Guido van Rossum
418+
</p>
419+
<p className="flex justify-center text-center">
420+
This is the creator of Python!
421+
</p>
422+
<img
423+
src="/divider.svg"
424+
className="w-full object-cover absolute mt-2 opacity-60"
425+
/>
426+
<div className="relative flex justify-center mt-4">
427+
<div className="w-80 h-auto my-4 rounded-sm flex flex-col justify-center items-center">
428+
<Image
429+
src="/special1.png"
430+
alt="Shop item"
431+
className="w-full h-auto"
432+
width="300"
433+
height="300"
434+
/>
435+
</div>
436+
</div>
437+
</div>
438+
</div>
439+
440+
<div className="relative p-6 px-4 rounded-lg m-4 pop">
441+
<img
442+
src="/shopback.svg"
443+
alt="card backs"
444+
className="absolute w-full h-full inset-0 object-cover opacity-80"
445+
/>{' '}
446+
<div className="relative my-2">
447+
<p className="flex justify-center text-center text-3xl px-4">
448+
1v1 call with Anders Hejlsberg
449+
</p>
450+
<p className="flex justify-center text-center">
451+
This is the creator of C# and Typescript!
452+
</p>
453+
<img
454+
src="/divider.svg"
455+
className="w-full object-cover absolute mt-2 opacity-60"
456+
/>
457+
<div className="relative flex justify-center mt-4">
458+
<div className="w-80 h-auto my-4 rounded-sm flex flex-col justify-center items-center">
459+
<Image
460+
src="/special2.png"
461+
alt="Shop item"
462+
className="w-full h-auto"
463+
width="300"
464+
height="300"
465+
/>
466+
</div>
467+
</div>
468+
</div>
469+
</div>
470+
</div>
409471
</div>
410472

411473
<div className="mt-24 mb-48">

0 commit comments

Comments
 (0)