-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (68 loc) · 3.1 KB
/
Copy pathindex.html
File metadata and controls
72 lines (68 loc) · 3.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Darwin: System Design Tool & Diagram Builder</title>
<meta name="description" content="Darwin is a free online system design tool and diagram builder. Create, edit, and export architecture diagrams for software systems, microservices, cloud, and more. Ideal for architects, engineers, and students." />
<meta property="og:title" content="Darwin: System Design Tool & Diagram Builder" />
<meta property="og:description" content="Free online system design tool and diagram builder for software architecture diagrams." />
<meta property="og:image" content="https://your-domain.com/screenshots/darwin-demo.gif" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Darwin: System Design Tool & Diagram Builder" />
<meta name="twitter:description" content="Free online system design tool and diagram builder for software architecture diagrams." />
<meta name="twitter:image" content="https://your-domain.com/screenshots/darwin-demo.gif" />
<link rel="canonical" href="https://your-domain.com/" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Darwin: System Design Tool & Diagram Builder",
"url": "https://your-domain.com/",
"description": "Darwin is a free online system design tool and diagram builder for creating software architecture diagrams.",
"applicationCategory": "DeveloperApplication",
"keywords": ["system design tool", "diagram builder", "architecture diagram", "software design", "cloud architecture"]
}
</script>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/html-to-image@1.11.11/dist/html-to-image.js"></script>
<script type="importmap">
{
"imports": {
"react-dom/": "https://esm.sh/react-dom@^19.1.0/",
"react/": "https://esm.sh/react@^19.1.0/",
"react": "https://esm.sh/react@^19.1.0"
}
}
</script>
<style>
/* Custom Scrollbar for Webkit browsers (Chrome, Safari, Edge) */
.custom-scrollbar::-webkit-scrollbar {
width: 8px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background-color: rgba(8, 145, 178, 0.3); /* Semi-transparent cyan from theme */
border-radius: 10px;
transition: background-color 0.2s ease-in-out;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
background-color: rgba(8, 145, 178, 0.5); /* Darker on hover */
}
/* Custom Scrollbar for Firefox */
.custom-scrollbar {
scrollbar-width: thin;
scrollbar-color: rgba(8, 145, 178, 0.5) transparent; /* thumb and track color */
}
</style>
<link rel="stylesheet" href="/index.css">
</head>
<body class="bg-white text-gray-800">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>