Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 0 additions & 34 deletions .replit

This file was deleted.

4 changes: 4 additions & 0 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# TODO: pakage

## Plan Steps:
- [ ] FS (memfs / IndexedDB) me node_modules persist karo ya ek baar load hone ke baad re-run avoid karo
Binary file modified artifacts/html-editor/public/opengraph.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
110 changes: 110 additions & 0 deletions dist/404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>404 — Page Not Found | HTML Editor</title>
<meta name="description"
content="The page you're looking for doesn't exist. Go back to HTML Editor and start building web pages." />
<meta name="robots" content="noindex, follow" />
<link rel="canonical" href="https://html-editor.replit.app/" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: #1e1e1e;
color: #ccc;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
text-align: center;
padding: 24px;
}

.container {
max-width: 480px;
}

.code {
font-size: 96px;
font-weight: 800;
color: #e34c26;
line-height: 1;
letter-spacing: -4px;
}

h1 {
font-size: 24px;
color: #e5a45a;
margin: 16px 0 8px;
font-weight: 600;
}

p {
font-size: 15px;
color: #888;
margin-bottom: 32px;
line-height: 1.6;
}

a {
display: inline-block;
padding: 12px 28px;
background: #e34c26;
color: #fff;
text-decoration: none;
border-radius: 8px;
font-size: 14px;
font-weight: 600;
transition: opacity 0.2s;
}

a:hover {
opacity: 0.85;
}

.sub {
margin-top: 20px;
font-size: 12px;
color: #555;
}
</style>
<style id="timeline-animations">
@keyframes flip { from { opacity: 0; transform: perspective(400px) rotateX(-90deg); } to { opacity: 1; transform: perspective(400px) rotateX(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.code { animation: flip 0.52s ease 0s 1 normal both !important; will-change: transform, opacity; }
div:nth-of-type(1) > h1:nth-of-type(1) { animation: slideUp 0.6s ease 0.13s 1 normal both !important; will-change: transform, opacity; }
div:nth-of-type(1) > p:nth-of-type(1) { animation: slideUp 0.6s ease 0.39s 1 normal both !important; will-change: transform, opacity; }
div:nth-of-type(1) > a:nth-of-type(1) { animation: slideUp 0.6s ease 0.6s 1 normal both !important; will-change: transform, opacity; }
.sub { animation: slideUp 0.6s ease 0.84s 1 normal both !important; will-change: transform, opacity; }
</style>
</head>

<body>
<div class="container">
<div class="code">404</div>
<h1>Page Not Found</h1>
<p>The page you're looking for doesn't exist or has been moved.<br>Head back to HTML Editor and start building.</p>
<a href="/">Go to HTML Editor</a>
<p class="sub">You will be redirected automatically in <span id="count">5</span> seconds.</p>
</div>
<script>
var n = 5;
var el = document.getElementById('count');
var t = setInterval(function() {
n--;
el.textContent = n;
if (n <= 0) { clearInterval(t); location.href = '/'; }
}, 1000);
</script>
</body>

</html>

Large diffs are not rendered by default.

Large diffs are not rendered by default.

799 changes: 799 additions & 0 deletions dist/assets/index-CgG5XB41.js

Large diffs are not rendered by default.

284 changes: 0 additions & 284 deletions dist/assets/index-D3jD5kk3.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/assets/index-DVnFnDMI.css

This file was deleted.

1 change: 0 additions & 1 deletion dist/assets/index-DpG140iN.css

This file was deleted.

280 changes: 0 additions & 280 deletions dist/assets/index-DpLfyO8k.js

This file was deleted.

2 changes: 2 additions & 0 deletions dist/assets/index-DwcwAavR.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/assets/index-Jznlv6B8.css

Large diffs are not rendered by default.

Loading