-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.js
35 lines (31 loc) · 1.02 KB
/
about.js
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
import Image from "next/image";
export default function AboutPage() {
return (
<div className="grid md:grid-cols-2 gap-6 grid-cols-1">
<div>
<section className="mb-6">
<h2 className="mb-3 text-xl font-bold">What is Tailwind?</h2>
<p>
Tailwind CSS is a highly customizable, low-level CSS framework that
gives you all of the building blocks you need to build bespoke
designs without any annoying opinionated styles you have to fight to
override.
</p>
</section>
<section>
<h2 className="mb-3 text-xl font-bold">What is Next.js?</h2>
<p>
Next.js is a minimalistic framework for creating server-rendered
React applications.
</p>
</section>
</div>
<Image
alt="A one-eyed alien holding a broken cable connected between a server and a desktop computer"
src="/critter.svg"
width={476}
height={297.17}
/>
</div>
);
}