2026-03-24 06:59:35 +03:00
|
|
|
import Image from "next/image";
|
|
|
|
|
|
|
|
|
|
export default function Home() {
|
2026-03-24 10:16:28 +03:00
|
|
|
return (
|
|
|
|
|
<div className="relative flex items-center justify-center min-h-screen p-4">
|
2026-03-24 16:10:53 +03:00
|
|
|
<div className="overflow-hidden">
|
|
|
|
|
|
2026-03-24 10:16:28 +03:00
|
|
|
<Image
|
2026-03-27 17:39:46 +03:00
|
|
|
src="/bg.webp"
|
2026-03-24 10:16:28 +03:00
|
|
|
alt="Background"
|
|
|
|
|
fill
|
2026-03-24 16:10:53 +03:00
|
|
|
style={{ objectFit: 'cover', userSelect: 'none', pointerEvents: 'none' }}
|
2026-03-24 10:16:28 +03:00
|
|
|
priority
|
2026-03-24 16:10:53 +03:00
|
|
|
draggable={false}
|
|
|
|
|
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
2026-03-27 17:21:10 +03:00
|
|
|
|
|
|
|
|
<div className="relative z-10 max-w-md w-full font-mono p-6 shadow-lg bg-black/100 ">
|
2026-03-24 10:16:28 +03:00
|
|
|
<div className="space-y-2">
|
2026-03-27 17:21:10 +03:00
|
|
|
|
2026-04-07 22:49:31 +03:00
|
|
|
<div className="border-b border-green-500 pb-1 mb-2 ">about:nouwushka</div>
|
2026-03-27 17:21:10 +03:00
|
|
|
<div>name: nouwushka/<a className="two-color">zhenya</a></div>
|
2026-03-24 10:16:28 +03:00
|
|
|
<div>pronouns: she/her</div>
|
2026-03-27 17:21:10 +03:00
|
|
|
<div>language: ru <a className="two-color">>native<</a> en <a className="two-color">>A2<</a> heb <a className="two-color">>A1<</a></div>
|
2026-03-24 10:16:28 +03:00
|
|
|
<div>hobby: programming, art, philosophy</div>
|
2026-03-27 17:39:46 +03:00
|
|
|
<div>occupation: <a className="link-custom">life</a></div>
|
2026-03-27 17:21:10 +03:00
|
|
|
<div>contact me: <a className="link-custom">@nouwushka</a></div>
|
|
|
|
|
<div>donate:<a href="https://pay.uwushka.cc" className="link-custom"> pay.uwushka.cc</a></div>
|
2026-03-24 10:16:28 +03:00
|
|
|
|
2026-03-24 18:51:23 +03:00
|
|
|
|
2026-03-27 17:21:10 +03:00
|
|
|
|
2026-04-07 22:49:31 +03:00
|
|
|
<div><a align="center">host by <a href="https://senko.digital" className="two-color">senko.digital</a></a> </div>
|
2026-03-24 10:16:28 +03:00
|
|
|
</div>
|
2026-03-24 07:40:27 +03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-03-24 10:16:28 +03:00
|
|
|
);
|
2026-03-24 06:59:35 +03:00
|
|
|
}
|
2026-03-24 07:40:27 +03:00
|
|
|
|