forked from asyncapi/conference-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubscription.tsx
More file actions
26 lines (25 loc) · 838 Bytes
/
Copy pathsubscription.tsx
File metadata and controls
26 lines (25 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import React, { JSX } from 'react';
import Button from '../Buttons/button';
function Subscription(): JSX.Element {
return (
<div className="mt-0 md:mt-[106px] subscription container flex justify-center">
<div className="mt-[106px] lg:mt-0 w-[1024px] min-h-[253px] lg:py-10 lg:w-full flex flex-col items-center">
<h3 className="text-[32px] text-white lg:text-center">
Subscribe for AsyncAPI Conf updates!
</h3>
<a
href="https://www.asyncapi.com/newsletter"
target="_blank"
rel="noreferrer"
className="sm:w-full"
data-test="subscribe-button"
>
<Button type="submit" className="w-full md:w-[200px] mt-8 px-10">
Subscribe
</Button>
</a>
</div>
</div>
);
}
export default Subscription;