Files
main/app/page.tsx

40 lines
1.3 KiB
TypeScript
Raw Normal View History

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-24 16:10:53 +03:00
src="/bg3.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-03-24 10:16:28 +03:00
<div align="center" 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">&gt;native&lt;</a> en <a className="two-color">&gt;A2&lt;</a> heb <a className="two-color">&gt;A1&lt;</a></div>
2026-03-24 10:16:28 +03:00
<div>hobby: programming, art, philosophy</div>
2026-03-24 16:10:53 +03:00
<div>occupation:one</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
<div align="center">host by <a href="https://senko.digital" className=" relative s two-color">senko.digital</a> </div>
2026-03-24 10:16:28 +03:00
</div>
</div>
</div>
2026-03-24 10:16:28 +03:00
);
2026-03-24 06:59:35 +03:00
}