File size: 6,328 Bytes
7fee62e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4ee8bf8
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ORCH AI - Autonomous Code Generation</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #1a1512 0%, #0f0d0b 100%);
            min-height: 100vh;
            color: #E8DED5;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 2rem;
        }
        
        .container {
            max-width: 900px;
            width: 100%;
        }
        
        .header {
            text-align: center;
            padding: 3rem 0;
        }
        
        .logo {
            width: 120px;
            height: 120px;
            border-radius: 24px;
            margin-bottom: 1.5rem;
        }
        
        h1 {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, #D4A574 0%, #A67C52 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }
        
        .tagline {
            color: #9C8B7A;
            font-size: 1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }
        
        .subtitle {
            color: #E8DED5;
            font-size: 1.25rem;
            margin-bottom: 2rem;
        }
        
        .badges {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }
        
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        
        .badge:hover {
            transform: translateY(-2px);
        }
        
        .badge-primary {
            background: linear-gradient(135deg, #D4A574 0%, #A67C52 100%);
            color: #1a1512;
            box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
        }
        
        .badge-secondary {
            background: #2d2420;
            color: #D4A574;
            border: 1px solid #5D4E37;
        }
        
        .section {
            background: #2d2420;
            border: 1px solid #5D4E37;
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .section h2 {
            color: #D4A574;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .section p {
            color: #9C8B7A;
            line-height: 1.7;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }
        
        .feature {
            background: #1a1512;
            border: 1px solid #5D4E37;
            border-radius: 12px;
            padding: 1.5rem;
        }
        
        .feature h3 {
            color: #D4A574;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }
        
        .feature p {
            color: #9C8B7A;
            font-size: 0.9rem;
        }
        
        .footer {
            text-align: center;
            padding: 2rem 0;
            color: #9C8B7A;
            font-size: 0.9rem;
        }
        
        .footer a {
            color: #D4A574;
            text-decoration: none;
        }
    </style>
</head>
<body>
    <div class="container">
        <header class="header">
            <img src="https://huggingface.co/orch-ai/ORCH-7B/resolve/main/logo.png" alt="ORCH" class="logo">
            <h1>ORCH AI</h1>
            <p class="tagline">Orchestrated Recursive Code Hierarchy</p>
            <p class="subtitle">Autonomous Code Generation for Everyone</p>
            
            <div class="badges">
                <a href="https://huggingface.co/spaces/raihan-js/orch-studio" class="badge badge-primary">
                    Try ORCH Studio
                </a>
                <a href="https://huggingface.co/orch-ai/ORCH-7B" class="badge badge-secondary">
                    ORCH-7B Model
                </a>
            </div>
        </header>
        
        <section class="section">
            <h2>Our Mission</h2>
            <p>Make autonomous code generation accessible on consumer hardware. Generate complete, production-ready Next.js applications from natural language prompts - not just code snippets, but entire project structures ready to deploy.</p>
        </section>
        
        <section class="section">
            <h2>Key Features</h2>
            <div class="features">
                <div class="feature">
                    <h3>Full Projects</h3>
                    <p>Complete Next.js 14 applications from a single prompt</p>
                </div>
                <div class="feature">
                    <h3>Production Ready</h3>
                    <p>TypeScript, Tailwind, Prisma, authentication included</p>
                </div>
                <div class="feature">
                    <h3>Consumer Hardware</h3>
                    <p>Runs on RTX 3060 12GB with INT8 quantization</p>
                </div>
                <div class="feature">
                    <h3>Autonomous</h3>
                    <p>Single prompt to deployable app, no iteration needed</p>
                </div>
            </div>
        </section>
        
        <footer class="footer">
            <p><strong>ORCH</strong> - Building the future of autonomous code generation</p>
            <p style="margin-top: 0.5rem;">
                <a href="https://huggingface.co/orch-ai/ORCH-7B">ORCH-7B</a> · 
                <a href="https://huggingface.co/spaces/raihan-js/orch-studio">Demo</a>
            </p>
        </footer>
    </div>
</body>
</html>