-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.js
38 lines (33 loc) · 1.33 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
36
37
38
import React from 'react'
function About() {
return (
<div className="bg-[#0a192f] w-full h-screen text-gray-300">
<div className="flex flex-col justify-center items-center w-full h-full ">
<div className="max-w-[1000px] w-full px-4 grid grid-cols-2 gap-8">
<div className="sm:text-right pb-8 pl-4">
<p className="text-4xl font-bold inline border-b-4 border-pink-600">
About
</p>
</div>
<div>
</div>
</div>
<div className='max-w-[1000px] w-full grid grid-cols-2 gap-8'>
<div className='sm:text-right text-4xl font-bold'>
<p>hi , i'm Dejen ,nice to meet you.please take a look around</p>
</div>
<div>
<p>
i am passionate about buidling execellent software that imroves
the lives of those around me. i specialize in creating software
for client ranging from individuals and small-bussines all the
way to large enterprise corporation.what would you do if you had
a software expert available at your fingertips
</p>
</div>
</div>
</div>
</div>
);
}
export default About;