Skip to content

Commit aca3217

Browse files
committed
feat: create electron based browser app
1 parent 4eef500 commit aca3217

29 files changed

Lines changed: 12338 additions & 4 deletions

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ node_modules/
44
# Build output
55
dist/
66
build/
7+
out/
8+
9+
# Electron
10+
electron-builder/
11+
release/
12+
*.exe
13+
*.dmg
14+
*.zip
715

816
# Environment variables
917
.env

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Open ChatGPT Atlas
44

5-
Free Alternative to ChatGPT Atlas.
5+
An Open-Source Browser and Extension that brings the capabilities of ChatGPT Atlas to every browser, allowing you to take actions across 500+ apps and the browser.
66

77
![Atlas Demo](./atlas.gif)
88

electron-browser/index.html

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Atlas Browser</title>
7+
<style>
8+
body {
9+
margin: 0;
10+
padding: 0;
11+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
12+
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
13+
sans-serif;
14+
-webkit-font-smoothing: antialiased;
15+
-moz-osx-font-smoothing: grayscale;
16+
background-color: #1a1a1a;
17+
color: #ffffff;
18+
}
19+
20+
#root {
21+
height: 100vh;
22+
overflow: hidden;
23+
}
24+
</style>
25+
</head>
26+
<body>
27+
<div id="root"></div>
28+
<script type="module" src="/src/renderer/index.tsx"></script>
29+
</body>
30+
</html>

0 commit comments

Comments
 (0)