blob: 0c3a44bc6d8d35a897fd4726f45f0e24a83f74d6 (
plain) (
blame)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
import { Container } from "./Container";
import Callout from "./Callout";
import Link from "next/link";
function FullTurboCTA() {
return (
<div className="flex flex-col items-start w-full gap-4 p-6 mt-8 bg-white shadow-lg md:items-center md:flex-row rounded-xl dark:bg-opacity-5">
<div className="justify-start flex-1">
<h3 className="font-semibold leading-6 tracking-tight">
Ready to go
<span className="m-2 font-mono full-turbo">{">>>"} FULL TURBO</span>
at your organization?
</h3>
<div className="text-base font-medium leading-7 text-gray-500 dark:text-gray-400">
Vercel's Experts can bring your entire team up to speed quickly
</div>
</div>
<div className="flex-none">
<Link
href="https://vercel.com/contact/sales?utm_source=turbo.build&utm_medium=referral&utm_campaign=turborepo_side_banner"
className="justify-center block px-4 py-2 text-black no-underline bg-white rounded-full dark:bg-opacity-5 dark:text-white"
>
Talk to an Expert
</Link>
</div>
<style jsx global>{`
.full-turbo {
background-image: linear-gradient(
60deg,
rgba(50, 134, 241, 1) 0%,
rgba(255, 30, 86, 1) 100%
);
background-clip: text;
color: transparent;
}
`}</style>
</div>
);
}
export default FullTurboCTA;
|