JSFiddle - React, Tailwind, and code Playground

by ami_cloudoe

HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Logo Page</title>
    <style>
        body {
            background-color: #09094D; /* Same blue as the logo */
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            animation: rotate 5s linear infinite;
            cursor: pointer;
        }
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
    </style>
    <script>
        function redirectToNewPage() {
            window.location.href = "newpage.html"; // Change this to your desired URL
        }
    </script>
</head>
<body>
    <img...