-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (45 loc) · 1.71 KB
/
index.html
File metadata and controls
53 lines (45 loc) · 1.71 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>BREP.io | Open Source Browser-Based Parametric CAD</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="BREP.io is a modern, open source parametric CAD modeler for the web. Design 3D parts with a professional B-Rep kernel and export to STL/STEP directly in your browser.">
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="color-scheme" content="dark" />
<link rel="canonical" href="https://brep.io/" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "BREP.io",
"operatingSystem": "Web Browser",
"applicationCategory": "DesignApplication",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"description": "Professional-grade open source parametric CAD for the browser."
}
</script>
</head>
<body>
<div id="app">
<header style="display:none;">
<h1>BREP.io: The Open Source CAD for the Web</h1>
<p>A web-based 3D modeling tool for engineers and makers. Key features include:</p>
<ul>
<li>Full parametric constraint solver</li>
<li>B-Rep (Boundary Representation) geometry kernel</li>
<li>No installation required - runs in any modern browser</li>
<li>Export to STL and STEP for 3D printing and manufacturing</li>
</ul>
</header>
<div style="text-align: center; margin-top: 35vh; font-family: sans-serif; color: #888;">
<p>Initializing BREP.io Parametric CAD...</p>
</div>
</div>
<script type="module" src="./src/main.js"></script>
</body>
</html>