Initial commit. All work done in Zaguan Blade

This commit is contained in:
2026-01-22 23:14:13 +01:00
commit adc09431d3
34 changed files with 10294 additions and 0 deletions
+76
View File
@@ -0,0 +1,76 @@
---
interface Props {
title: string;
description?: string;
}
const { title, description = "AI-Native code editor built with Rust and Tauri. Fast, native, and designed for AI-powered development." } = Astro.props;
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{title}</title>
<meta name="description" content={description} />
<meta name="generator" content={Astro.generator} />
<!-- Open Graph -->
<meta property="og:title" content={title} />
<meta property="og:description" content={description} />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://zblade.dev" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet" />
<!-- Styles -->
<link rel="stylesheet" href="/styles/global.css" />
</head>
<body>
<header class="site-header">
<div class="container">
<div class="header-content">
<a href="/" class="logo">
<span class="logo-text">Zaguán Blade</span>
</a>
<nav class="nav">
<a href="#features">Features</a>
<a href="#download">Download</a>
<a href="https://zaguanai.com/pricing" target="_blank" rel="noopener">Pricing</a>
</nav>
</div>
</div>
</header>
<slot />
<footer class="site-footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h4>Zaguán Blade</h4>
<p>AI-Native code editor for the modern developer.</p>
</div>
<div class="footer-section">
<h4>Product</h4>
<a href="#features">Features</a>
<a href="#download">Download</a>
<a href="https://zaguanai.com/pricing" target="_blank" rel="noopener">Pricing</a>
</div>
<div class="footer-section">
<h4>Zaguán AI</h4>
<a href="https://zaguanai.com" target="_blank" rel="noopener">Main Site</a>
<a href="https://zaguanai.com/pricing" target="_blank" rel="noopener">Subscription</a>
</div>
</div>
<div class="footer-bottom">
<p>&copy; {new Date().getFullYear()} Zaguán AI. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>