-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa8f871
commit a69d290
Showing
21 changed files
with
169 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
|
||
const Sessions = () => { | ||
// const [activeNav, setActiveNav] = useState<string>('all') | ||
return ( | ||
<section | ||
id="sponsors" | ||
className="container mx-auto px-6 py-12 md:py-24 flex flex-col items-center text-center text-secondary" | ||
> | ||
<h2 className="text-3xl md:text-5xl font-bold mt-8 mb-6"> | ||
Coming Soon | ||
</h2> | ||
{/*<div className="w-full lg:w-[80%] mt-8">*/} | ||
{/* <div className="border border-b-2 border-l-0 border-r-0 border-t-0">*/} | ||
{/* <ul className="flex space-x-8 cursor-pointer">*/} | ||
{/* <li onClick={() => setActiveNav('all')} className={`${activeNav == 'all' ? 'border border-b-4 border-l-0 border-r-0 border-t-0 border-blue-600' : ''} px-2`}>All Days</li>*/} | ||
{/* <li onClick={() => setActiveNav('18th')} className={`${activeNav == '18th' ? 'border border-b-4 border-l-0 border-r-0 border-t-0 border-blue-600' : ''} px-2`}>Fri Oct 18th</li>*/} | ||
{/* <li onClick={() => setActiveNav('19th')} className={`${activeNav == '19th' ? 'border border-b-4 border-l-0 border-r-0 border-t-0 border-blue-600' : ''} px-2`}>Sat Oct 19th</li>*/} | ||
{/* </ul>*/} | ||
{/* </div>*/} | ||
{/* <div>*/} | ||
{/* <div className="border w-full flex text-left space-x-4">*/} | ||
{/* <button className="px-4 py-2 bg-blue-700">*/} | ||
{/* 9:00 AM*/} | ||
{/* </button>*/} | ||
{/* <div>*/} | ||
{/* <p>9:00 AM - 10:00 AM EAT / Fri Oct 18th</p>*/} | ||
{/* <p>GopherCon Demo Talk</p>*/} | ||
{/* <p>Location</p>*/} | ||
{/* <div>*/} | ||
{/* demo demo*/} | ||
{/* </div>*/} | ||
{/* <p>Level</p>*/} | ||
{/* <div>*/} | ||
{/* </div>*/} | ||
{/* </div>*/} | ||
{/* </div>*/} | ||
{/* </div>*/} | ||
{/*</div>*/} | ||
</section> | ||
) | ||
} | ||
|
||
export default Sessions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,25 +8,15 @@ export default function GopherconForAll() { | |
> | ||
<div className={"text-center md:w-1/2 p-6 md:text-left flex flex-col lg:justify-center md:ml-24 "}> | ||
<h2 className={"text-5xl md:text-3xl font-bold text-secondary mb-3 text-wrap"}> | ||
#gophercon for all | ||
GopherCon Africa 2024 Ticket Scholarships | ||
</h2> | ||
|
||
<div className={"text-justify lg:max-w-[500px] text-secondary text-sm mb-6"}> | ||
We are committed to ensuring everyone has the opportunity to join us for gophercon. | ||
Inline with this we have introduced two new ways to purchase tickets. | ||
|
||
<br /> | ||
<br /> | ||
<b>Sponsored Tickets: </b>This allows for anyone in our gopher community to sponsor our fellow gophers for the event. | ||
<br /> | ||
<b>Lipa pole pole: </b>This allows you to pay for your ticket in installments | ||
|
||
<br /> | ||
<br /> | ||
For more info, kindly contact us at <b>[email protected]</b> | ||
<p>We are committed to ensuring that everyone has the opportunity to attend GopherCon Africa. To support this, GoBridge has pledged to sponsor tickets for underrepresented and diverse Go enthusiasts.</p> | ||
<p className="mt-4 font-semibold">Apply with the link below</p> | ||
</div> | ||
|
||
<a href={"mailto:[email protected]"} target={"_blank"} className="button w-fit mx-auto lg:m-0">Contact Us</a> | ||
<a href="https://forms.gle/13Csm1tFv5iRPvMX6" target={"_blank"} className="button w-fit mx-auto px-8 lg:m-0">Apply For GopherCon Africa 2024 Ticket Scholarships</a> | ||
</div> | ||
|
||
<div className="md:w-1/2 flex justify-center items-center p-6"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
export const SponsorBtn = (props: {btnTitle: string}) => { | ||
return ( | ||
<div className="my-14"> | ||
<a | ||
className="button w-full md:w-auto px-8" | ||
href="mailto:[email protected]?subject=GopherCon%20Africa%20Sponsorship" | ||
> | ||
{props.btnTitle} | ||
</a> | ||
</div> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
const SponsorshipHeader = (props: {title: string}) => { | ||
return ( | ||
<div className="py-4 bg-blue-400 text-white font-semibold tracking-wider text-lg"> | ||
<p>{ props.title}</p> | ||
</div> | ||
) | ||
} | ||
|
||
export default SponsorshipHeader |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.