feat(homepage): add cinematic project homepage with GitHub Pages deployment

Astro-based static homepage with dark luxury theme, self-hosted fonts,
scroll-reveal animations, and GitHub Actions CI/CD to Pages.

Sections: Nav, Hero, Dashboard Showcase, Feature Cards, Install CTA, Footer.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Lum1104
2026-03-15 20:26:49 +08:00
Unverified
parent bdf6cf6856
commit e862b9a1da
31 changed files with 3950 additions and 0 deletions
+55
View File
@@ -0,0 +1,55 @@
name: Deploy Homepage
on:
push:
branches: [main]
paths:
- 'homepage/**'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
cache-dependency-path: homepage/pnpm-lock.yaml
- name: Install dependencies
working-directory: homepage
run: pnpm install
- name: Build
working-directory: homepage
run: pnpm build
- uses: actions/upload-pages-artifact@v3
with:
path: homepage/dist
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v4
+1
View File
@@ -8,6 +8,7 @@
<a href="#-quick-start"><img src="https://img.shields.io/badge/Quick_Start-blue?style=for-the-badge" alt="Quick Start" /></a>
<a href="https://github.com/Lum1104/Understand-Anything/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-MIT-yellow?style=for-the-badge" alt="License: MIT" /></a>
<a href="https://docs.anthropic.com/en/docs/claude-code"><img src="https://img.shields.io/badge/Claude_Code-Plugin-8A2BE2?style=for-the-badge" alt="Claude Code Plugin" /></a>
<a href="https://lum1104.github.io/Understand-Anything"><img src="https://img.shields.io/badge/Homepage-d4a574?style=for-the-badge" alt="Homepage" /></a>
</p>
<p align="center">
+83
View File
@@ -0,0 +1,83 @@
# Understand Anything — Project Homepage Design
**Date**: 2026-03-15
**Goal**: Attract new users to the Understand Anything Claude Code plugin
**Approach**: "The Reveal" — cinematic scroll-driven single-page site
## Tech Stack
- **Astro** (static site generator, zero JS framework overhead)
- **Self-hosted fonts** (no Google Fonts CDN dependency — works in China)
- **CSS** with variables matching dashboard theme
- **Vanilla JS** for `IntersectionObserver` scroll animations
- **GitHub Actions** for CI/CD to `gh-pages` branch
## Source & Deployment
- Source: `homepage/` directory on `main` branch
- Build output: deployed to `gh-pages` branch via GitHub Actions
- URL: `lum1104.github.io/Understand-Anything`
## Page Structure (scroll order)
### 1. Nav Bar
Minimal floating nav. Logo/wordmark left, GitHub star button + "Get Started" CTA right. Transparent, becomes solid on scroll.
### 2. Hero (full viewport)
- Headline: **"Understand Any Codebase"**
- Subheadline: "Turn 200,000 lines of code into an interactive knowledge graph you can explore, search, and learn from — powered by multi-agent AI analysis."
- CTA: "Get Started" (gold button, scrolls to install section)
- Secondary: "View on GitHub" (text link)
- Background: `hero.jpg` with dark gradient overlay
### 3. Dashboard Showcase
- Label: "See your codebase come alive"
- `overview.png` in a stylized browser frame with gold glow shadow
- Fade-in on scroll
### 4. Feature Cards (3 columns)
Staggered fade-in animation:
1. **Interactive Knowledge Graph** — "Visualize files, functions, and dependencies as an explorable graph with smart layout."
2. **Plain-English Summaries** — "Every node explained in language anyone can understand — from junior devs to product managers."
3. **Guided Tours** — "AI-generated walkthroughs that teach you the codebase step by step."
### 5. Install CTA
- Headline: "Get started in 30 seconds"
- Code block:
```
/plugin marketplace add Lum1104/Understand-Anything
/plugin install understand-anything
/understand
```
- "Works with Claude Code" note
### 6. Footer
- "Understand Anything" wordmark
- GitHub link, license
- "Built as a Claude Code plugin"
## Visual Design System
### Colors (matching dashboard)
| Token | Value | Usage |
|-------|-------|-------|
| `--bg` | `#0a0a0a` | Page background |
| `--surface` | `#141414` | Card backgrounds |
| `--border` | `#1a1a1a` | Borders, dividers |
| `--accent` | `#d4a574` | Gold/amber primary accent |
| `--text` | `#e8e2d8` | Primary text (warm white) |
| `--text-muted` | `#8a8578` | Secondary text |
### Typography (self-hosted, with fallbacks)
- **Headings**: DM Serif Display → Georgia, "Times New Roman", serif
- **Body**: Inter → -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif
- **Code**: JetBrains Mono → "SF Mono", "Cascadia Code", "Fira Code", monospace
- Hero headline: ~4rem serif with subtle text-shadow glow
### Effects
- Gold glow on dashboard screenshot frame (`box-shadow` with gold at low opacity)
- Subtle noise texture overlay (SVG, matching dashboard)
- Scroll-triggered fade+slide-up animations (CSS `@keyframes` + `IntersectionObserver`)
- CTA button: gold background with hover glow pulse
- Cards: glass-morphism with `backdrop-filter: blur`
- Responsive: 768px (tablet), 480px (mobile)
File diff suppressed because it is too large Load Diff
+24
View File
@@ -0,0 +1,24 @@
# build output
dist/
# generated types
.astro/
# dependencies
node_modules/
# logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# environment variables
.env
.env.production
# macOS-specific files
.DS_Store
# jetbrains setting folder
.idea/
+4
View File
@@ -0,0 +1,4 @@
{
"recommendations": ["astro-build.astro-vscode"],
"unwantedRecommendations": []
}
+11
View File
@@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}
+43
View File
@@ -0,0 +1,43 @@
# Astro Starter Kit: Minimal
```sh
pnpm create astro@latest -- --template minimal
```
> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun!
## 🚀 Project Structure
Inside of your Astro project, you'll see the following folders and files:
```text
/
├── public/
├── src/
│ └── pages/
│ └── index.astro
└── package.json
```
Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
Any static assets, like images, can be placed in the `public/` directory.
## 🧞 Commands
All commands are run from the root of the project, from a terminal:
| Command | Action |
| :------------------------ | :----------------------------------------------- |
| `pnpm install` | Installs dependencies |
| `pnpm dev` | Starts local dev server at `localhost:4321` |
| `pnpm build` | Build your production site to `./dist/` |
| `pnpm preview` | Preview your build locally, before deploying |
| `pnpm astro ...` | Run CLI commands like `astro add`, `astro check` |
| `pnpm astro -- --help` | Get help using the Astro CLI |
## 👀 Want to learn more?
Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
+8
View File
@@ -0,0 +1,8 @@
// @ts-check
import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
site: 'https://lum1104.github.io',
base: '/Understand-Anything',
});
+17
View File
@@ -0,0 +1,17 @@
{
"name": "homepage",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"astro": "^6.0.4"
}
}
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 655 B

+4
View File
@@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
<rect width="32" height="32" rx="6" fill="#0a0a0a"/>
<text x="16" y="23" font-family="Georgia, serif" font-size="20" fill="#d4a574" text-anchor="middle" font-weight="bold">U</text>
</svg>

After

Width:  |  Height:  |  Size: 253 B

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

After

Width:  |  Height:  |  Size: 178 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

+86
View File
@@ -0,0 +1,86 @@
---
const features = [
{
icon: '◈',
title: 'Interactive Knowledge Graph',
description: 'Visualize files, functions, and dependencies as an explorable graph with smart layout.',
},
{
icon: '¶',
title: 'Plain-English Summaries',
description: 'Every node explained in language anyone can understand — from junior devs to product managers.',
},
{
icon: '⟐',
title: 'Guided Tours',
description: 'AI-generated walkthroughs that teach you the codebase step by step.',
},
];
---
<section class="features">
<div class="features-grid">
{features.map((f, i) => (
<div class={`feature-card reveal reveal-delay-${i + 1}`}>
<span class="feature-icon">{f.icon}</span>
<h3 class="feature-title">{f.title}</h3>
<p class="feature-desc">{f.description}</p>
</div>
))}
</div>
</section>
<style>
.features {
padding: 2rem 2rem 6rem;
max-width: 1100px;
margin: 0 auto;
}
.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
}
.feature-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 12px;
padding: 2rem;
transition: border-color 0.3s ease, box-shadow 0.3s ease;
backdrop-filter: blur(8px);
}
.feature-card:hover {
border-color: rgba(212, 165, 116, 0.3);
box-shadow: 0 0 20px var(--accent-glow);
}
.feature-icon {
display: block;
font-size: 1.75rem;
color: var(--accent);
margin-bottom: 1rem;
}
.feature-title {
font-family: var(--font-heading);
font-size: 1.25rem;
color: var(--text);
margin-bottom: 0.75rem;
}
.feature-desc {
font-size: 0.95rem;
color: var(--text-muted);
line-height: 1.6;
}
@media (max-width: 768px) {
.features-grid {
grid-template-columns: 1fr;
gap: 1rem;
}
}
</style>
+61
View File
@@ -0,0 +1,61 @@
---
const githubUrl = 'https://github.com/Lum1104/Understand-Anything';
---
<footer class="footer">
<div class="footer-inner">
<span class="footer-logo">Understand Anything</span>
<div class="footer-links">
<a href={githubUrl} target="_blank" rel="noopener noreferrer">GitHub</a>
<span class="footer-sep">·</span>
<a href={`${githubUrl}/blob/main/LICENSE`} target="_blank" rel="noopener noreferrer">License</a>
</div>
<p class="footer-note">Built as a Claude Code plugin</p>
</div>
</footer>
<style>
.footer {
padding: 3rem 2rem;
border-top: 1px solid var(--border);
text-align: center;
}
.footer-inner {
max-width: 1200px;
margin: 0 auto;
}
.footer-logo {
font-family: var(--font-heading);
font-size: 1.1rem;
color: var(--text);
display: block;
margin-bottom: 0.75rem;
}
.footer-links {
margin-bottom: 0.75rem;
}
.footer-links a {
color: var(--text-muted);
font-size: 0.85rem;
text-decoration: none;
transition: color 0.2s;
}
.footer-links a:hover {
color: var(--accent);
}
.footer-sep {
color: var(--border);
margin: 0 0.5rem;
}
.footer-note {
font-size: 0.8rem;
color: var(--text-muted);
}
</style>
+125
View File
@@ -0,0 +1,125 @@
---
const githubUrl = 'https://github.com/Lum1104/Understand-Anything';
---
<section class="hero">
<div class="hero-bg">
<img src="/Understand-Anything/images/hero.jpg" alt="" class="hero-bg-img" loading="eager" />
<div class="hero-overlay"></div>
</div>
<div class="hero-content">
<h1 class="hero-title">Understand Any Codebase</h1>
<p class="hero-sub">
Turn 200,000 lines of code into an interactive knowledge graph you can
explore, search, and learn from — powered by multi-agent AI analysis.
</p>
<div class="hero-actions">
<a href="#install" class="hero-cta">Get Started</a>
<a href={githubUrl} target="_blank" rel="noopener noreferrer" class="hero-secondary">
View on GitHub &rarr;
</a>
</div>
</div>
</section>
<style>
.hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
overflow: hidden;
}
.hero-bg {
position: absolute;
inset: 0;
z-index: 0;
}
.hero-bg-img {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.25;
}
.hero-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
to bottom,
rgba(10, 10, 10, 0.3) 0%,
rgba(10, 10, 10, 0.7) 60%,
var(--bg) 100%
);
}
.hero-content {
position: relative;
z-index: 1;
max-width: 800px;
padding: 2rem;
animation: fadeSlideUp 1s ease-out;
}
.hero-title {
font-family: var(--font-heading);
font-size: clamp(2.5rem, 6vw, 4.5rem);
color: var(--text);
line-height: 1.1;
margin-bottom: 1.5rem;
text-shadow: 0 0 60px var(--accent-glow);
}
.hero-sub {
font-size: clamp(1rem, 2vw, 1.25rem);
color: var(--text-muted);
line-height: 1.7;
max-width: 600px;
margin: 0 auto 2.5rem;
}
.hero-actions {
display: flex;
align-items: center;
justify-content: center;
gap: 2rem;
flex-wrap: wrap;
}
.hero-cta {
background: var(--accent);
color: var(--bg);
padding: 0.85rem 2.5rem;
border-radius: 8px;
font-weight: 600;
font-size: 1.1rem;
text-decoration: none;
transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.hero-cta:hover {
text-decoration: none;
box-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(212, 165, 116, 0.08);
transform: translateY(-2px);
}
.hero-secondary {
color: var(--text-muted);
font-size: 1rem;
text-decoration: none;
transition: color 0.2s;
}
.hero-secondary:hover {
color: var(--accent);
text-decoration: none;
}
@media (max-width: 480px) {
.hero-actions { flex-direction: column; gap: 1rem; }
}
</style>
+90
View File
@@ -0,0 +1,90 @@
<section class="install" id="install">
<div class="install-inner reveal">
<h2 class="install-title">Get started in 30 seconds</h2>
<div class="install-code">
<div class="install-code-header">
<span class="install-code-dot"></span>
<span class="install-code-label">Claude Code</span>
</div>
<pre><code><span class="cmd">/plugin marketplace add</span> Lum1104/Understand-Anything
<span class="cmd">/plugin install</span> understand-anything
<span class="cmd">/understand</span></code></pre>
</div>
<p class="install-note">Works with <strong>Claude Code</strong> — Anthropic's official CLI for Claude.</p>
</div>
</section>
<style>
.install {
padding: 6rem 2rem;
text-align: center;
}
.install-inner {
max-width: 640px;
margin: 0 auto;
}
.install-title {
font-family: var(--font-heading);
font-size: clamp(1.5rem, 3vw, 2.25rem);
color: var(--text);
margin-bottom: 2rem;
}
.install-code {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 12px;
overflow: hidden;
text-align: left;
margin-bottom: 1.5rem;
}
.install-code-header {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1rem;
border-bottom: 1px solid var(--border);
}
.install-code-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--accent);
}
.install-code-label {
font-size: 0.8rem;
color: var(--text-muted);
font-family: var(--font-code);
}
pre {
padding: 1.25rem 1.5rem;
margin: 0;
overflow-x: auto;
}
code {
font-family: var(--font-code);
font-size: 0.95rem;
line-height: 1.8;
color: var(--text);
}
.cmd {
color: var(--accent);
}
.install-note {
font-size: 0.9rem;
color: var(--text-muted);
}
.install-note strong {
color: var(--text);
}
</style>
+107
View File
@@ -0,0 +1,107 @@
---
const githubUrl = 'https://github.com/Lum1104/Understand-Anything';
---
<nav class="nav" id="nav">
<div class="nav-inner">
<a href="/Understand-Anything/" class="nav-logo">Understand Anything</a>
<div class="nav-links">
<a href={githubUrl} target="_blank" rel="noopener noreferrer" class="nav-github">
<svg viewBox="0 0 24 24" width="20" height="20" fill="currentColor" aria-hidden="true">
<path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0 0 24 12c0-6.63-5.37-12-12-12z"/>
</svg>
<span>GitHub</span>
</a>
<a href="#install" class="nav-cta">Get Started</a>
</div>
</div>
</nav>
<script>
const nav = document.getElementById('nav');
if (nav) {
window.addEventListener('scroll', () => {
nav.classList.toggle('scrolled', window.scrollY > 50);
});
}
</script>
<style>
.nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
padding: 1rem 2rem;
transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled {
background-color: rgba(10, 10, 10, 0.85);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
}
.nav-inner {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
}
.nav-logo {
font-family: var(--font-heading);
font-size: 1.25rem;
color: var(--text);
text-decoration: none;
}
.nav-logo:hover {
text-decoration: none;
color: var(--accent);
}
.nav-links {
display: flex;
align-items: center;
gap: 1.5rem;
}
.nav-github {
display: flex;
align-items: center;
gap: 0.5rem;
color: var(--text-muted);
font-size: 0.9rem;
text-decoration: none;
transition: color 0.2s;
}
.nav-github:hover {
color: var(--text);
text-decoration: none;
}
.nav-cta {
background: var(--accent);
color: var(--bg);
padding: 0.5rem 1.25rem;
border-radius: 6px;
font-weight: 600;
font-size: 0.9rem;
text-decoration: none;
transition: box-shadow 0.3s ease;
}
.nav-cta:hover {
text-decoration: none;
box-shadow: 0 0 20px var(--accent-glow);
}
@media (max-width: 480px) {
.nav { padding: 0.75rem 1rem; }
.nav-github span { display: none; }
}
</style>
+71
View File
@@ -0,0 +1,71 @@
<section class="showcase">
<p class="showcase-label reveal">See your codebase come alive</p>
<div class="showcase-frame reveal reveal-delay-1">
<div class="showcase-titlebar">
<span class="dot red"></span>
<span class="dot yellow"></span>
<span class="dot green"></span>
</div>
<img
src="/Understand-Anything/images/overview.png"
alt="Understand Anything dashboard showing an interactive knowledge graph of a codebase"
class="showcase-img"
loading="lazy"
/>
</div>
</section>
<style>
.showcase {
padding: 4rem 2rem 6rem;
max-width: 1100px;
margin: 0 auto;
text-align: center;
}
.showcase-label {
font-family: var(--font-heading);
font-size: clamp(1.25rem, 3vw, 1.75rem);
color: var(--text-muted);
margin-bottom: 2.5rem;
}
.showcase-frame {
border-radius: 12px;
overflow: hidden;
background: var(--surface);
border: 1px solid var(--border);
box-shadow:
0 0 40px var(--accent-glow),
0 25px 50px rgba(0, 0, 0, 0.5);
}
.showcase-titlebar {
display: flex;
align-items: center;
gap: 6px;
padding: 10px 14px;
background: rgba(20, 20, 20, 0.8);
border-bottom: 1px solid var(--border);
}
.dot {
width: 10px;
height: 10px;
border-radius: 50%;
}
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }
.showcase-img {
width: 100%;
height: auto;
display: block;
}
@media (max-width: 768px) {
.showcase { padding: 2rem 1rem 4rem; }
}
</style>
+25
View File
@@ -0,0 +1,25 @@
---
interface Props {
title: string;
}
const { title } = Astro.props;
---
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Turn any codebase into an interactive knowledge graph you can explore, search, and learn from." />
<link rel="icon" type="image/svg+xml" href="/Understand-Anything/favicon.svg" />
<title>{title}</title>
</head>
<body>
<slot />
</body>
</html>
<style is:global>
@import '../styles/global.css';
</style>
+34
View File
@@ -0,0 +1,34 @@
---
import Layout from '../layouts/Layout.astro';
import Nav from '../components/Nav.astro';
import Hero from '../components/Hero.astro';
import Showcase from '../components/Showcase.astro';
import Features from '../components/Features.astro';
import Install from '../components/Install.astro';
import Footer from '../components/Footer.astro';
---
<Layout title="Understand Anything — Turn any codebase into a knowledge graph">
<Nav />
<Hero />
<Showcase />
<Features />
<Install />
<Footer />
</Layout>
<script>
const observer = new IntersectionObserver(
(entries) => {
entries.forEach((entry) => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
observer.unobserve(entry.target);
}
});
},
{ threshold: 0.15 }
);
document.querySelectorAll('.reveal').forEach((el) => observer.observe(el));
</script>
+112
View File
@@ -0,0 +1,112 @@
/* Font declarations — self-hosted, no external CDN dependency */
@font-face {
font-family: 'DM Serif Display';
src: url('/Understand-Anything/fonts/DMSerifDisplay-Regular.woff2') format('woff2');
font-weight: 400;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Inter';
src: url('/Understand-Anything/fonts/Inter-Regular.woff2') format('woff2');
font-weight: 400;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Inter';
src: url('/Understand-Anything/fonts/Inter-SemiBold.woff2') format('woff2');
font-weight: 600;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'JetBrains Mono';
src: url('/Understand-Anything/fonts/JetBrainsMono-Regular.woff2') format('woff2');
font-weight: 400;
font-style: normal;
font-display: swap;
}
/* Design tokens */
:root {
--bg: #0a0a0a;
--surface: #141414;
--border: #1a1a1a;
--accent: #d4a574;
--accent-glow: rgba(212, 165, 116, 0.15);
--text: #e8e2d8;
--text-muted: #8a8578;
--font-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;
--font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
--font-code: 'JetBrains Mono', 'SF Mono', 'Cascadia Code', 'Fira Code', monospace;
}
/* Reset & base */
*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: var(--font-body);
background-color: var(--bg);
color: var(--text);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
/* Noise texture overlay */
body::before {
content: '';
position: fixed;
inset: 0;
pointer-events: none;
z-index: 9999;
opacity: 0.03;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
/* Scroll-reveal animation */
@keyframes fadeSlideUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.reveal {
opacity: 0;
}
.reveal.visible {
animation: fadeSlideUp 0.8s ease-out forwards;
}
/* Stagger delays for feature cards */
.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.25s; }
.reveal-delay-3 { animation-delay: 0.4s; }
a {
color: var(--accent);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
+5
View File
@@ -0,0 +1,5 @@
{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"]
}
+1745
View File
File diff suppressed because it is too large Load Diff
+1
View File
@@ -1,3 +1,4 @@
packages:
- 'understand-anything-plugin/packages/*'
- 'understand-anything-plugin'
- 'homepage'