-
-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: preparation for 2024 conference on tour (#263)
* updated conf logo * completed the heading page * adding correct venues * used default background color * making page responsive * fixed about layouting issue * making page responsive * made homepage responsive * adding info to venue section * ready for initial review * fixed compiler issue * adding ticket section * added ticket section * added suggested changes * updated cfp link * changed button placeholder * added links length * .
- Loading branch information
1 parent
693a383
commit a6d4aa2
Showing
28 changed files
with
247 additions
and
1,524 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
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,16 @@ | ||
import React from 'react' | ||
import Button from '../Buttons/button' | ||
|
||
function TicketCards({className, city}) { | ||
return ( | ||
<div className={`w-[300px] lg:w-full opacity-20 h-[400px] flex flex-col text-white justify-between rounded-lg card bg-white ${className}`}> | ||
<div className='p-4'> | ||
<div className='text-xl font-bold text-gradient'>{city.name}, {city.country}</div> | ||
<div className='mt-2 text-lg'>{city.date}</div> | ||
</div> | ||
<div className='border-t h-20 border-dashed p-4 text-center'><Button disabled={true} className='w-[200px]'>Buy now</Button></div> | ||
</div> | ||
) | ||
} | ||
|
||
export default TicketCards |
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.