69 lines
1.7 KiB
TypeScript
69 lines
1.7 KiB
TypeScript
export default function About() {
|
|
return (
|
|
<>
|
|
<style>{`
|
|
body {
|
|
margin: 0;
|
|
font-family: 'Poppins', sans-serif;
|
|
background: linear-gradient(120deg, #e0e0e0, #bdbdbd, #9e9e9e);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
.container {
|
|
width: 360px;
|
|
padding: 30px;
|
|
background: linear-gradient(145deg, #ffffff, #d6d6d6);
|
|
border-radius: 30px;
|
|
box-shadow: 10px 10px 25px rgba(0,0,0,0.2),
|
|
-10px -10px 25px rgba(255,255,255,0.6);
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
color: #2f2f2f;
|
|
margin-bottom: 5px;
|
|
letter-spacing: 2px;
|
|
}
|
|
|
|
h3 {
|
|
color: #666;
|
|
font-weight: normal;
|
|
margin-bottom: 25px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.box {
|
|
background: linear-gradient(135deg, #f5f5f5, #cfcfcf);
|
|
padding: 18px;
|
|
border-radius: 20px;
|
|
text-align: left;
|
|
line-height: 1.7;
|
|
color: #333;
|
|
font-size: 14px;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.box:hover {
|
|
transform: translateY(-5px);
|
|
background: linear-gradient(135deg, #e0e0e0, #b5b5b5);
|
|
}
|
|
`}</style>
|
|
|
|
<div className="container">
|
|
<h1>ABOUT</h1>
|
|
<h3>tentang sayaa</h3>
|
|
|
|
<div className="box">
|
|
saya zahro,saya bisa di panggil zar <br/>
|
|
saya memiliki hobi menggambar,dan menyanyi <br/>
|
|
saya berusia 17 tahun <br/>
|
|
saya sekolah di SMK GUNA CIPTA <br/>
|
|
saya mengambil jurusan (RPL) atau Rekayasa Perangkat Lunak
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
} |