forked from TypeCellOS/BlockNote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFeature.tsx
More file actions
62 lines (62 loc) · 2.88 KB
/
Feature.tsx
File metadata and controls
62 lines (62 loc) · 2.88 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
export default function Feature() {
return (
<div className="overflow-hidden bg-white py-24 sm:py-32">
<div className="mx-auto max-w-7xl px-6 lg:px-8">
<div className="mx-auto grid max-w-2xl grid-cols-1 gap-x-8 gap-y-16 sm:gap-y-20 lg:mx-0 lg:max-w-none lg:grid-cols-2 lg:items-start">
<div className="lg:pr-4 lg:pt-4">
<div className="lg:max-w-lg">
<h2 className="text-base font-semibold leading-7 text-indigo-600">
Deploy faster
</h2>
<p className="mt-2 text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl">
A better workflow
</p>
<p className="mt-6 text-lg leading-8 text-gray-600">
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Maiores impedit perferendis suscipit eaque, iste dolor
cupiditate blanditiis ratione.
</p>
<div className="mt-8">
<a
href="#"
className="inline-flex rounded-md bg-indigo-600 px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600">
Get started
</a>
</div>
<figure className="mt-16 border-l border-gray-200 pl-8 text-gray-600">
<blockquote className="text-base leading-7">
<p>
“Vel ultricies morbi odio facilisi ultrices accumsan donec
lacus purus. Lectus nibh ullamcorper ac dictum justo in
euismod. Risus aenean ut elit massa. In amet aliquet eget
cras. Sem volutpat enim tristique.”
</p>
</blockquote>
<figcaption className="mt-6 flex gap-x-4 text-sm leading-6">
<img
src="https://images.unsplash.com/photo-1509783236416-c9ad59bae472?ixlib=rb-=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=8&w=1024&h=1024&q=80"
alt=""
className="h-6 w-6 flex-none rounded-full"
/>
<div>
<span className="font-semibold text-gray-900">
Maria Hill
</span>{" "}
– Marketing Manager
</div>
</figcaption>
</figure>
</div>
</div>
<img
src="https://tailwindui.com/img/component-images/dark-project-app-screenshot.png"
alt="Product screenshot"
className="w-[48rem] max-w-none rounded-xl shadow-xl ring-1 ring-gray-400/10 sm:w-[57rem] md:-ml-4 lg:ml-0"
width={2432}
height={1442}
/>
</div>
</div>
</div>
);
}