Files
vishnya/lib/vishnya_web/controllers/page_html/home.html.heex

18 lines
883 B
Plaintext

<%
images = ["rawr.png", "love.png", "meow.png"]
random_image = Enum.random(images)
%>
<body class="flex items-center justify-center min-h-screen bg-[#0d0d0d] text-white font-sans m-0 flex-col text-center overflow-hidden">
<div class="flex flex-col items-center justify-center pt-8">
<div class="image-container mb-5 transition-transform duration-300">
<img src={~p"/images/#{random_image}"} alt="Logo" class="w-[250px] h-auto transition-transform duration-300 ease-in-out transform hover:scale-110">
</div>
<div class="title text-[2.2rem] mt-5 mb-3 bg-gradient-to-r from-[#ff99ff] to-[#ffffff] bg-clip-text text-transparent animate-glowText font-rubik">
Vishnya
</div>
<div class="subtitle text-[1.6rem] max-w-lg text-white animate-brightGlow font-modak">
Cyber reconnaissance & Intelligence-Gathering network
</div>
</div>
</body>