Add project and deployment instruction (docs/DEPLOYMENT.md)
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
42
media/лого темный справа слоган.md
Normal file
42
media/лого темный справа слоган.md
Normal file
@@ -0,0 +1,42 @@
|
||||
```html
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>iiEasy Logo - Right Aligned Dark with Styled Slogan</title>
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
<style>
|
||||
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;800&display=swap');
|
||||
body {
|
||||
font-family: 'Inter', sans-serif;
|
||||
background-color: #000000;
|
||||
}
|
||||
.slogan-style {
|
||||
letter-spacing: 0.25em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body class="flex items-center justify-center min-h-screen p-8 bg-black">
|
||||
<div class="flex items-center">
|
||||
<!-- Логотип (SVG) - Белый -->
|
||||
<svg width="180" height="180" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg" class="mr-10">
|
||||
<!-- Внешнее кольцо -->
|
||||
<circle cx="100" cy="100" r="70" stroke="#FFFFFF" stroke-width="6" fill="none" stroke-dasharray="15 85"/>
|
||||
<!-- Среднее кольцо -->
|
||||
<circle cx="100" cy="100" r="50" stroke="#FFFFFF" stroke-width="6" fill="none" stroke-dasharray="12 58" transform="rotate(30 100 100)"/>
|
||||
<!-- Внутреннее кольцо -->
|
||||
<circle cx="100" cy="100" r="30" stroke="#FFFFFF" stroke-width="6" fill="none" stroke-dasharray="8 32" transform="rotate(60 100 100)"/>
|
||||
</svg>
|
||||
|
||||
<!-- Текстовый блок справа - Белый -->
|
||||
<div class="flex flex-col border-l border-gray-700 pl-10">
|
||||
<div class="text-3xl font-bold text-white mb-2">iiEasy</div>
|
||||
<!-- Слоган компании -->
|
||||
<div class="text-lg text-gray-300">Будущее. Просто.</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
```
|
||||
Reference in New Issue
Block a user