Blocks Forms Block
Form 002How to use this block
1. Copy the block source code and place it in a src/components/form-002.jsx
file.
Block (JavaScript)
import * as React from "react"import { VisuallyHidden } from "reflexjs"export default function Block({ subheading, heading, text, ...props }) {return (<section py="6|8|12|20" {...props}><div variant="container"><divdisplay="flex"flexDirection="column"justifyContent="center"alignItems="center"textAlign="center">{subheading && (<p color="primary" textTransform="uppercase" m="0">{subheading}</p>)}{heading && (<h1 variant="heading.h1" fontWeight="bolder" lineHeight="tight">{heading}</h1>)}{text && (<p variant="text.lead" mt="2">{text}</p>)}<form display="grid" col="1|auto auto" mt="6" gap="4" w="full|auto"><VisuallyHidden><label htmlFor="email">Email</label></VisuallyHidden><inputvariant="input"type="email"id="form-04-email"name="email"placeholder="Type your email"/><button type="submit" variant="button.primary">Subscribe</button></form></div></div></section>)}
2. Copy the example code below and add it to your page.
Usage (JavaScript)
import * as React from "react"import Block from "../src/components/form-002"export default function Example() {return (<Blocksubheading="Subheading"heading="Turn followers into customers"text="Reiciendis quia totam esse. Dicta minus iusto quisquam doloribus temporibus."/>)}