-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
135 lines (120 loc) · 5.32 KB
/
Copy pathindex.html
File metadata and controls
135 lines (120 loc) · 5.32 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ArchGen AI - Intelligent Architecture Diagram Builder</title>
<!-- SEO Meta Tags -->
<meta name="description" content="Visual workflow builder that generates technical architecture diagrams, documentation, and AI engineering prompts using Puter.js AI." />
<meta name="keywords" content="AI Architecture, System Design, Diagram Builder, Puter.js, React Flow, Mermaid.js, Technical Documentation, Prompt Engineering" />
<meta name="author" content="ArchGen AI" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://archgen.ai/" />
<meta property="og:title" content="ArchGen AI - Intelligent Architecture Builder" />
<meta property="og:description" content="Transform workflows into detailed technical architectures, diagrams, and code prompts instantly." />
<meta property="og:image" content="https://placehold.co/1200x630/1e293b/FFF?text=ArchGen+AI" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://archgen.ai/" />
<meta property="twitter:title" content="ArchGen AI - Intelligent Architecture Builder" />
<meta property="twitter:description" content="Transform workflows into detailed technical architectures, diagrams, and code prompts instantly." />
<meta property="twitter:image" content="https://placehold.co/1200x630/1e293b/FFF?text=ArchGen+AI" />
<!-- Favicon (SVG Data URI) -->
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>⚡</text></svg>">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://js.puter.com/v2/"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/reactflow@11.11.3/dist/style.css" />
<style>
/* Custom scrollbar for webkit */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: #020617;
}
::-webkit-scrollbar-thumb {
background: #334155;
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: #475569;
}
.glass-panel {
background: rgba(15, 23, 42, 0.6);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.05);
}
/* Subtle Grid Pattern */
.bg-grid-white {
mask-image: linear-gradient(to bottom, transparent, black, transparent);
-webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 70%, transparent 100%);
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='32' height='32' fill='none' stroke='rgb(255 255 255 / 0.04)'%3e%3cpath d='M0 .5H31.5V32'/%3e%3c/svg%3e");
}
/* React Flow Custom Styling */
.react-flow__node.selected {
border-color: #6366f1 !important; /* Indigo-500 */
box-shadow: 0 0 25px rgba(99, 102, 241, 0.3) !important;
}
.react-flow__handle {
width: 10px;
height: 10px;
background: #818cf8; /* Indigo-400 */
border: 2px solid #0f172a; /* Slate-950 */
}
.react-flow__edge-path {
stroke: #64748b; /* Slate-500 */
stroke-width: 2;
transition: stroke 0.3s ease;
}
.react-flow__edge.selected .react-flow__edge-path {
stroke: #818cf8; /* Indigo-400 */
stroke-width: 3;
filter: drop-shadow(0 0 6px rgba(99, 102, 241, 0.4));
}
.react-flow__controls {
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5) !important;
border-radius: 12px !important;
overflow: hidden;
border: 1px solid #1e293b !important;
background: #0f172a !important;
}
.react-flow__controls-button {
background-color: #0f172a !important;
border-bottom: 1px solid #1e293b !important;
fill: #94a3b8 !important;
}
.react-flow__controls-button:hover {
background-color: #1e293b !important;
fill: #f8fafc !important;
}
.react-flow__minimap {
background-color: #020617 !important;
border-radius: 12px;
border: 1px solid #1e293b;
mask-image: radial-gradient(circle, black 40%, transparent 100%); /* Fade edges */
}
</style>
<script type="importmap">
{
"imports": {
"react-dom/client": "https://esm.sh/react-dom@18.3.1/client",
"react-dom": "https://esm.sh/react-dom@18.3.1",
"react": "https://esm.sh/react@18.3.1",
"lucide-react": "https://esm.sh/lucide-react@0.344.0?external=react,react-dom",
"reactflow": "https://esm.sh/reactflow@11.11.3?external=react,react-dom",
"mermaid": "https://esm.sh/mermaid@10.9.1",
"react-dom/": "https://esm.sh/react-dom@18.3.1/",
"react/": "https://esm.sh/react@18.3.1/"
}
}
</script>
<link rel="stylesheet" href="/index.css">
</head>
<body class="bg-slate-950 text-slate-100 font-sans antialiased selection:bg-indigo-500/30">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>