- favicon.svg: indigo/purple gradient rounded square with 3 persona silhouettes (focus group concept) - index.html: link SVG favicon (with ICO fallback), set title to Semblance Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
19 lines
670 B
HTML
Executable file
19 lines
670 B
HTML
Executable file
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
|
<title>Semblance</title>
|
|
<meta name="description" content="Lovable Generated Project" />
|
|
<meta name="author" content="Lovable" />
|
|
<meta property="og:image" content="/og-image.png" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<!-- GPT Engineer script removed to fix CORS and MIME type issues -->
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|