This commit is contained in:
AG
2025-12-20 22:53:57 +02:00
parent 0b04700e84
commit da4b058b83
2 changed files with 25 additions and 12 deletions

11
src/favicon.svg Normal file
View File

@@ -0,0 +1,11 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="32" height="32" rx="8" fill="url(#paint0_linear)"/>
<path d="M8 16C8 16 10 12 12 12C14 12 16 20 18 20C20 20 22 16 22 16" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<circle cx="22" cy="16" r="2" fill="white"/>
<defs>
<linearGradient id="paint0_linear" x1="0" y1="0" x2="32" y2="32" gradientUnits="userSpaceOnUse">
<stop stop-color="#3B82F6"/>
<stop offset="1" stop-color="#8B5CF6"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 592 B

View File

@@ -1,14 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/ag-beats/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Gemini Rhythm Machine</title>
</head>
<body class="bg-slate-100">
<div id="root"></div>
<script type="module" src="./index.tsx"></script>
</body>
</html>
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Gemini Rhythm Machine</title>
</head>
<body class="bg-slate-100">
<div id="root"></div>
<script type="module" src="./index.tsx"></script>
</body>
</html>