You've already forked zblade.dev
Add .zblade/ to .gitignore, configure allow_gitignored_files setting, add TypeScript and Astro check dependencies, remove pnpm lockfile
This commit is contained in:
@@ -0,0 +1,441 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Zaguán Blade - AI-Native Code Editor</title>
|
||||
<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;600;700;800;900&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
/* ===== CSS Variables ===== */
|
||||
:root {
|
||||
/* Core Colors - High Contrast Terminal Aesthetic */
|
||||
--color-bg: #0f0f0f;
|
||||
--color-bg-secondary: #151515;
|
||||
--color-bg-elevated: #1a1a1a;
|
||||
|
||||
--color-text: #ffffff;
|
||||
--color-text-secondary: #a0a0a0;
|
||||
--color-text-tertiary: #666666;
|
||||
|
||||
--color-accent: #00dd77;
|
||||
--color-accent-alt: #ff0080;
|
||||
--color-accent-blue: #00d4ff;
|
||||
--color-accent-yellow: #ffdd00;
|
||||
|
||||
--color-border: #333333;
|
||||
--color-border-accent: #00dd77;
|
||||
|
||||
/* Spacing */
|
||||
--space-xs: 0.5rem;
|
||||
--space-sm: 1rem;
|
||||
--space-md: 1.5rem;
|
||||
--space-lg: 2rem;
|
||||
--space-xl: 3rem;
|
||||
--space-2xl: 4rem;
|
||||
--space-3xl: 6rem;
|
||||
|
||||
/* Typography */
|
||||
--font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', monospace;
|
||||
--font-mono: 'SF Mono', 'Consolas', 'Monaco', monospace;
|
||||
--font-size-base: 16px;
|
||||
--line-height-base: 1.5;
|
||||
|
||||
/* Layout */
|
||||
--max-width: 1400px;
|
||||
--border-radius: 2px;
|
||||
|
||||
/* Effects */
|
||||
--shadow-glow: 0 0 15px rgba(0, 221, 119, 0.2);
|
||||
--shadow-glow-pink: 0 0 15px rgba(255, 0, 128, 0.2);
|
||||
}
|
||||
|
||||
/* ===== Reset & Base Styles ===== */
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html {
|
||||
font-size: var(--font-size-base);
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: var(--font-family);
|
||||
background-color: var(--color-bg);
|
||||
color: var(--color-text);
|
||||
line-height: var(--line-height-base);
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
/* ===== Layout ===== */
|
||||
.container {
|
||||
max-width: var(--max-width);
|
||||
margin: 0 auto;
|
||||
padding: 0 var(--space-lg);
|
||||
}
|
||||
|
||||
/* ===== Hero Section ===== */
|
||||
.hero {
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding-top: var(--space-3xl);
|
||||
padding-bottom: var(--space-3xl);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.hero-bg-elements {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
pointer-events: none;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.hero-block {
|
||||
position: absolute;
|
||||
background: linear-gradient(135deg, var(--color-accent) 0%, transparent 100%);
|
||||
opacity: 0.05;
|
||||
}
|
||||
|
||||
.hero-block-1 {
|
||||
top: -20%;
|
||||
right: -10%;
|
||||
width: 60%;
|
||||
height: 80%;
|
||||
transform: rotate(15deg);
|
||||
}
|
||||
|
||||
.hero-block-2 {
|
||||
bottom: -30%;
|
||||
left: -15%;
|
||||
width: 50%;
|
||||
height: 70%;
|
||||
transform: rotate(-25deg);
|
||||
background: linear-gradient(135deg, var(--color-accent-alt) 0%, transparent 100%);
|
||||
}
|
||||
|
||||
.scanline {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 100%;
|
||||
background: repeating-linear-gradient(
|
||||
0deg,
|
||||
rgba(0, 221, 119, 0.02) 0px,
|
||||
transparent 2px,
|
||||
transparent 4px
|
||||
);
|
||||
pointer-events: none;
|
||||
animation: scanline 10s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes scanline {
|
||||
0% { transform: translateY(0); }
|
||||
100% { transform: translateY(20px); }
|
||||
}
|
||||
|
||||
.hero-content {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
max-width: 900px;
|
||||
}
|
||||
|
||||
.hero-label {
|
||||
font-family: var(--font-mono);
|
||||
font-size: 0.875rem;
|
||||
color: var(--color-accent);
|
||||
letter-spacing: 0.2em;
|
||||
margin-bottom: var(--space-md);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.hero-title {
|
||||
margin-bottom: var(--space-lg);
|
||||
}
|
||||
|
||||
.title-line-1,
|
||||
.title-line-2 {
|
||||
display: block;
|
||||
font-size: clamp(3.5rem, 10vw, 8rem);
|
||||
font-weight: 900;
|
||||
line-height: 0.9;
|
||||
letter-spacing: -0.03em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.title-line-1 {
|
||||
color: var(--color-text);
|
||||
}
|
||||
|
||||
.title-line-2 {
|
||||
color: transparent;
|
||||
-webkit-text-stroke: 2px var(--color-text);
|
||||
text-stroke: 2px var(--color-text);
|
||||
}
|
||||
|
||||
.title-accent {
|
||||
display: block;
|
||||
font-size: clamp(1.5rem, 4vw, 2.5rem);
|
||||
font-weight: 700;
|
||||
color: var(--color-accent);
|
||||
font-family: var(--font-mono);
|
||||
margin-top: var(--space-sm);
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
|
||||
.hero-meta {
|
||||
display: flex;
|
||||
gap: var(--space-md);
|
||||
align-items: center;
|
||||
margin-bottom: var(--space-xl);
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.meta-item {
|
||||
font-family: var(--font-mono);
|
||||
font-size: 0.75rem;
|
||||
color: var(--color-text-secondary);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.1em;
|
||||
padding: 0.4rem 0.8rem;
|
||||
border: 1px solid var(--color-border);
|
||||
background: var(--color-bg-secondary);
|
||||
}
|
||||
|
||||
.meta-divider {
|
||||
color: var(--color-accent);
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.hero-description {
|
||||
font-size: 1.125rem;
|
||||
color: var(--color-text-secondary);
|
||||
max-width: 600px;
|
||||
margin-bottom: var(--space-xl);
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
.hero-info {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: var(--space-sm);
|
||||
padding: 1rem 2rem;
|
||||
color: var(--color-text);
|
||||
font-family: var(--font-mono);
|
||||
font-weight: 700;
|
||||
font-size: 0.95rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
border: 2px solid var(--color-accent);
|
||||
background: transparent;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.hero-info:hover {
|
||||
background: var(--color-accent);
|
||||
color: var(--color-bg);
|
||||
box-shadow: 0 4px 20px rgba(0, 221, 119, 0.25);
|
||||
}
|
||||
|
||||
/* ===== Teasers Section ===== */
|
||||
.teasers {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
gap: var(--space-md);
|
||||
margin-bottom: var(--space-xl);
|
||||
}
|
||||
|
||||
.teaser {
|
||||
padding: var(--space-md);
|
||||
border: 1px solid var(--color-border);
|
||||
background: var(--color-bg-secondary);
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.teaser:hover {
|
||||
border-color: var(--color-accent);
|
||||
box-shadow: var(--shadow-glow);
|
||||
}
|
||||
|
||||
.teaser-label {
|
||||
display: block;
|
||||
font-family: var(--font-mono);
|
||||
font-size: 0.75rem;
|
||||
font-weight: 700;
|
||||
color: var(--color-accent);
|
||||
letter-spacing: 0.1em;
|
||||
margin-bottom: var(--space-xs);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.teaser p {
|
||||
font-size: 0.9rem;
|
||||
color: var(--color-text-secondary);
|
||||
line-height: 1.6;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* ===== Footer ===== */
|
||||
.site-footer {
|
||||
background: var(--color-bg);
|
||||
border-top: 2px solid var(--color-border);
|
||||
padding: var(--space-lg) 0;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.site-footer::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 2px;
|
||||
background: linear-gradient(90deg, var(--color-accent), var(--color-accent-alt), var(--color-accent-blue));
|
||||
}
|
||||
|
||||
.footer-content {
|
||||
color: var(--color-text-secondary);
|
||||
font-size: 0.9rem;
|
||||
font-family: var(--font-mono);
|
||||
}
|
||||
|
||||
.footer-content a {
|
||||
color: var(--color-accent);
|
||||
text-decoration: underline;
|
||||
transition: color 0.2s ease;
|
||||
}
|
||||
|
||||
.footer-content a:hover {
|
||||
color: var(--color-text);
|
||||
}
|
||||
|
||||
/* ===== Responsive ===== */
|
||||
@media (max-width: 768px) {
|
||||
.hero {
|
||||
min-height: auto;
|
||||
padding-top: var(--space-2xl);
|
||||
padding-bottom: var(--space-2xl);
|
||||
}
|
||||
|
||||
.hero-block-1,
|
||||
.hero-block-2 {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.title-line-1,
|
||||
.title-line-2 {
|
||||
font-size: clamp(2.5rem, 12vw, 5rem);
|
||||
}
|
||||
|
||||
.hero-meta {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.meta-divider {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.container {
|
||||
padding: 0 var(--space-md);
|
||||
}
|
||||
}
|
||||
|
||||
/* Reduced motion support */
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
animation-duration: 0.01ms !important;
|
||||
animation-iteration-count: 1 !important;
|
||||
transition-duration: 0.01ms !important;
|
||||
}
|
||||
|
||||
.scanline {
|
||||
animation: none;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<!-- Hero Section -->
|
||||
<section class="hero">
|
||||
<div class="hero-bg-elements">
|
||||
<div class="hero-block hero-block-1"></div>
|
||||
<div class="hero-block hero-block-2"></div>
|
||||
<div class="scanline"></div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="hero-content">
|
||||
<div class="hero-label">// NEXT-GEN EDITOR</div>
|
||||
<h1 class="hero-title">
|
||||
<span class="title-line-1">ZAGUÁN</span>
|
||||
<span class="title-line-2">BLADE</span>
|
||||
<span class="title-accent">AI-NATIVE_</span>
|
||||
</h1>
|
||||
<div class="hero-meta">
|
||||
<span class="meta-item">RUST + TAURI</span>
|
||||
<span class="meta-divider">/</span>
|
||||
<span class="meta-item">BUILT FROM ZERO</span>
|
||||
<span class="meta-divider">/</span>
|
||||
<span class="meta-item">NOT A FORK</span>
|
||||
</div>
|
||||
<p class="hero-description">
|
||||
A fast, native code editor designed from the ground up for AI-powered development.
|
||||
No Electron bloat. No compromises. Just pure performance.
|
||||
</p>
|
||||
|
||||
<!-- Teasers -->
|
||||
<div class="teasers">
|
||||
<div class="teaser">
|
||||
<span class="teaser-label">THE BODY</span>
|
||||
<p>A lightweight GUI client that handles input, rendering, and visualization. Pure interface.</p>
|
||||
</div>
|
||||
<div class="teaser">
|
||||
<span class="teaser-label">VERTICAL DIFF BLOCKS</span>
|
||||
<p>AI-generated code appears in intelligent blocks. See changes as they happen.</p>
|
||||
</div>
|
||||
<div class="teaser">
|
||||
<span class="teaser-label">WEB TOOLS VISUALIZATION</span>
|
||||
<p>Watch the AI think. See what it's reading in real-time.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="hero-info">
|
||||
<span>COMING SOON</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer class="site-footer">
|
||||
<div class="container">
|
||||
<div class="footer-content">
|
||||
<p>© 2024 Zaguán Blade. Visit <a href="https://zaguanai.com" target="_blank" rel="noopener">zaguanai.com</a> for more information.</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user