Skip to content

Commit

Permalink
Merge branch 'master' into fix/unaligned-hero-section
Browse files Browse the repository at this point in the history
  • Loading branch information
AceTheCreator authored Mar 15, 2024
2 parents 2df8efa + 43a291e commit 5b2ecd1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions components/About/about.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function About() {
<Paragraph typeStyle='body-lg' className="mt-6" textColor='text-gray-200'>
We are currently looking for sponsors, for more details please read our Sponsorship Prospectus.
</Paragraph>
<div className='mt-10 flex'>
<div className='mt-10 flex gap-4 sm:flex-col lg:justify-center'>
<a
href='https://opencollective.com/asyncapi/events/asyncapi-conference-on-tour-6b3c0aa1'
target='_blank'
Expand All @@ -37,7 +37,7 @@ function About() {
<Button className='w-[200px]'>Become a sponsor now</Button>
</a>
<a href='https://drive.google.com/file/d/15rQ7cp-LLmxSCcAb2aBFitgJkGhYXBrd/view' target='_blank' rel="noreferrer">
<Button overlay={true} className='w-[200px] ml-4 border'>Sponsorship prospectus</Button>
<Button overlay={true} className='w-[200px] border'>Sponsorship prospectus</Button>
</a>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/Navbar/navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ function Navbar() {
<div className='subMenu absolute z-[9] mt-8 w-[140px] rounded-md left-[-15px] gradient-bg pl-2 pt-1 flex flex-col justify-center space-y-0'>
{link.subMenu.map((subL) => (
<Link href={subL.ref} key={subL.title}>
<div className='h-[32px] text-[16px]'>
<div className='h-[32px] text-[16px] hover:scale-95 hover:translate-x-1 transition-all'>
{subL.title}
</div>
</Link>
Expand Down
6 changes: 4 additions & 2 deletions pages/venue/[id].js
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,10 @@ function Venue({ city }) {
</Heading>
<Paragraph className='mt-[24px]' textColor='text-white'>{city.description}</Paragraph>

<Heading typeStyle='lg' className='text-white mt-[24px]'>
{city.address}
<Heading typeStyle='lg' className='text-white mt-[24px] hover:underline'>
<a href={city.map} target='_blank' rel="noreferrer">
{city.address}
</a>
</Heading>
<Heading typeStyle='lg' className='text-white mt-[24px]'>
{city.date}
Expand Down

0 comments on commit 5b2ecd1

Please sign in to comment.