36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
import Image from "next/image";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="relative flex items-center justify-center min-h-screen p-4">
|
|
<Image
|
|
src="/bg.png"
|
|
alt="Background"
|
|
fill
|
|
style={{ objectFit: 'cover' }}
|
|
priority
|
|
/>
|
|
<div className="relative z-10 max-w-md w-full font-mono p-6 shadow-lg bg-black/100 ">
|
|
<div className="space-y-2">
|
|
<div align="center" className="border-b border-green-500 pb-1 mb-2 ">about:nouwushka</div>
|
|
<div>name: zhenya/nouwushka</div>
|
|
<div>pronouns: she/her</div>
|
|
<div>language: ru >native<, en >A2<, heb >A1<</div>
|
|
<div>hobby: programming, art, philosophy</div>
|
|
<div>occupation: none</div>
|
|
<div>contact me: link.uwwshka.cc</div>
|
|
<div>donate: <a href="https://uwushka.cc">pay.uwushka.cc</a></div>
|
|
|
|
<div align="center" className=" pb-1 mt-6 mb-2">about:services</div>
|
|
<div>service:gitea - git.uwwshka.cc</div>
|
|
<div>service:matrix - chat.uwwshka.cc</div>
|
|
|
|
|
|
<div align="center">host by senko.digital</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|