feat(release): publish minimal self-contained Magent source

This commit is contained in:
Magent release tooling
2026-09-19 16:58:12 +12:00
commit 5fa5d45535
272 changed files with 79305 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
import "./style.css";
export const metadata = { title: "Coming soon | Magent" };
export default function ComingSoonPage() {
return (
<main className="launch-cover">
<div className="launch-brand">MAGENT</div>
<span className="launch-badge">COMING SOON</span>
<h1>
Your next watch.
<br />
<em>Made simpler.</em>
</h1>
<p className="launch-intro">
The new Magent is on its way. Easier requests, clearer updates and a simpler way to get things fixed.
</p>
<ol className="launch-path" aria-label="Request journey">
{["Request", "Track", "Watch"].map((label, index) => (
<li key={label}>
<span>0{index + 1}</span>
<strong>{label}</strong>
</li>
))}
</ol>
<p className="launch-note">Were getting everything ready. Check back soon.</p>
<footer>
<strong>Magent</strong>
<span>Your media member portal</span>
<a href="/login">Admin sign in</a>
</footer>
</main>
);
}