Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: subscription button modified #217 #222

Merged
merged 8 commits into from
Oct 23, 2023
14 changes: 8 additions & 6 deletions components/Form/subscription.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from 'react';
import Button from '../Buttons/button';

function Subcription() {
return (
Expand All @@ -8,12 +9,13 @@ function Subcription() {
Subscribe for AACoT’23 updates!
</h3>
<a href='https://www.asyncapi.com/newsletter' target='_blank' rel="noreferrer" className='sm:w-full'>
<button
type='submit'
className='w-[299px] lg:w-full bg-[#875AE2] h-[84px] mt-[40px] text-[24px] text-white rounded-lg lg:mt-6'
>
Subscribe
</button>
<Button
type='submit'
className='w-full md:w-[200px] mt-8 px-10'
>
Subscribe
</Button>

</a>
</div>
</div>
Expand Down