|
| 1 | +import clsx from "clsx"; |
| 2 | +//@ts-ignore |
| 3 | +import Heading from "@theme/Heading"; |
| 4 | +//@ts-ignore |
| 5 | +import styles from "./styles.module.css"; |
| 6 | +import React from "react"; |
| 7 | + |
| 8 | +export default function CallToAction(): JSX.Element { |
| 9 | + return ( |
| 10 | + <section className={styles.section}> |
| 11 | + <div className="container"> |
| 12 | + <div className="row margin-bottom--xl"> |
| 13 | + <div className="col col--12 d-flex align-items-center justify-content-center"> |
| 14 | + <div className="text--center"> |
| 15 | + <Heading as="h2" className="margin-bottom--md"> |
| 16 | + When You Need More Than Open Data |
| 17 | + </Heading> |
| 18 | + <p> |
| 19 | + Some projects outgrow what free data alone can offer. While our |
| 20 | + free service is robust, your project might benefit <br /> |
| 21 | + from a more comprehensive solution. Ideal Postcodes offers |
| 22 | + several key advantages. |
| 23 | + </p> |
| 24 | + </div> |
| 25 | + </div> |
| 26 | + </div> |
| 27 | + <div className="row margin-bottom--xl"> |
| 28 | + <div className={clsx("col col--6 margin-bottom--xl")}> |
| 29 | + <div className="text--center padding-horiz--md"> |
| 30 | + <Heading as="h3">Broader Coverage</Heading> |
| 31 | + <p> |
| 32 | + Includes mainland UK plus additional territories such as the |
| 33 | + Channel Islands and Isle of Man |
| 34 | + </p> |
| 35 | + </div> |
| 36 | + </div> |
| 37 | + <div className={clsx("col col--6 margin-bottom--xl")}> |
| 38 | + <div className="text--center padding-horiz--md"> |
| 39 | + <Heading as="h3">Daily Data Updates</Heading> |
| 40 | + <p> |
| 41 | + Licensed partner of Royal mail and other authoritative data |
| 42 | + sources with daily updates |
| 43 | + </p> |
| 44 | + </div> |
| 45 | + </div> |
| 46 | + <div className={clsx("col col--6 margin-bottom--xl")}> |
| 47 | + <div className="text--center padding-horiz--md"> |
| 48 | + <Heading as="h3">Enhanced Address Data</Heading> |
| 49 | + <p> |
| 50 | + Access UK rooftop geocodes, UPRNs and more unique property |
| 51 | + datasets |
| 52 | + </p> |
| 53 | + </div> |
| 54 | + </div> |
| 55 | + <div className={clsx("col col--6 margin-bottom--xl")}> |
| 56 | + <div className="text--center padding-horiz--md"> |
| 57 | + <Heading as="h3">Dedicated Support</Heading> |
| 58 | + <p> |
| 59 | + Includes account access, technical support, and optional SLAs |
| 60 | + </p> |
| 61 | + </div> |
| 62 | + </div> |
| 63 | + </div> |
| 64 | + <div className="row"> |
| 65 | + <div className="col col--12 text--center"> |
| 66 | + <button>Explore Ideal Postcodes</button> |
| 67 | + </div> |
| 68 | + </div> |
| 69 | + </div> |
| 70 | + </section> |
| 71 | + ); |
| 72 | +} |
0 commit comments