| --- |
| title: Violet AI |
| emoji: ๐ |
| colorFrom: purple |
| colorTo: indigo |
| sdk: static |
| pinned: false |
| --- |
| |
| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <style> |
| body { |
| font-family: Arial, sans-serif; |
| background-color: #f0f0f0; |
| margin: 0; |
| padding: 0; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| min-height: 100vh; |
| } |
| .card { |
| background-color: #ffffff; |
| box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); |
| border-radius: 8px; |
| padding: 20px; |
| width: 100%; |
| text-align: center; |
| } |
| .logo img { |
| width: 100%; |
| height: 100%; |
| object-fit: cover; |
| border-radius: 10px; |
| } |
| .name { |
| font-size: 24px; |
| font-weight: bold; |
| margin: 10px 0; |
| } |
| .position { |
| font-size: 18px; |
| color: #777; |
| margin-bottom: 15px; |
| } |
| .contact { |
| margin-top: 20px; |
| } |
| .contact p { |
| margin: 8px 0; |
| color: #333; |
| } |
| .contact a { |
| color: #007bff; |
| text-decoration: none; |
| } |
| </style> |
| </head> |
| <body> |
| <div class="card"> |
| <div class="logo"> |
| <img src="https://cdn-uploads.huggingface.co/production/uploads/64e7710e8a431a73c837d5a1/6GTD4u07IZ8DEtn4hb8kt.png" alt="Company Logo"> |
| </div> |
| <div class="name">AI & Creativity</div> |
| <div class="contact"> |
| <p><a href="mailto:hello@violet.ai">hello@violet.ai</a></p> |
| <p><a href="https://www.violet.ai/en/home" target="_blank">https://www.violet.ai/en/home</a></p> |
| <!-- Add more contact details as needed --> |
| </div> |
| </div> |
| </body> |
| </html> |