Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,44 @@
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh; /* Full viewport height */
margin: 0;
background-color: #f5f5f5; /* Light background for contrast */
}

.logo-container {
text-align: center; /* Center the logo */
}

.logo {
width: 200px; /* Adjust logo width */
height: auto; /* Maintain aspect ratio */
border: 2px solid #333; /* Optional border for visibility */
border-radius: 10px; /* Rounded corners */
padding: 10px; /* Space around the logo */
background-color: #fff; /* White background for contrast */
}

/* Optional: Add hover effect */
.logo:hover {
transform: scale(1.05); /* Slightly enlarge the logo on hover */
transition: transform 0.3s; /* Smooth transition */
}
</style>
</head>
<body>
<div id="root"></div>

<div class="logo-container">
<img src="/path/to/your/logo.png" alt="Logo" class="logo" />
<h1>Your Brand Name</h1> <!-- Optional: Add a title below the logo -->
</div>

<script type="module" src="/src/main.jsx"></script>
</body>
</html>