FILE / ScuroNeko/scuroneko.dev

index.html

Исходный файл и его история в репозитории.
FILE main
Files

140 lines
4.9 KiB
HTML

<!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="ScuroNeko is a Go and JavaScript developer building self-hosted tools, small web systems, and developer-focused projects."
/>
<meta name="author" content="ScuroNeko" />
<meta
name="theme-color"
content="#1f1f28"
media="(prefers-color-scheme: dark)"
/>
<meta
name="theme-color"
content="#f2ecbc"
media="(prefers-color-scheme: light)"
/>
<meta name="color-scheme" content="dark light" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="ScuroNeko" />
<meta property="og:title" content="ScuroNeko" />
<meta
property="og:description"
content="Go and JavaScript developer building self-hosted tools, small web systems, and developer-focused projects."
/>
<meta property="og:url" content="https://scuroneko.dev/" />
<meta property="og:image" content="https://scuroneko.dev/favicon.png" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="ScuroNeko" />
<meta
name="twitter:description"
content="Go and JavaScript developer building self-hosted tools, small web systems, and developer-focused projects."
/>
<meta name="twitter:image" content="https://scuroneko.dev/favicon.png" />
<link rel="canonical" href="https://scuroneko.dev/" />
<link rel="stylesheet" href="./styles/main.css" />
<link rel="stylesheet" href="./styles/hero.css" />
<link rel="stylesheet" href="./styles/stack.css" />
<link rel="stylesheet" href="./styles/projects.css" />
<link rel="stylesheet" href="./styles/workstations.css" />
<link rel="stylesheet" href="./styles/links.css" />
<link rel="stylesheet" href="./styles/tones.css" />
<link rel="stylesheet" href="./styles/theme-light.css" />
<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=Barlow+Condensed:wght@600;700;800&family=Barlow:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://storage.scuroneko.dev/fonts/FantasqueSansMono.css"
/>
<link rel="shortcut icon" href="./icons/favicon-512.png" type="image/png" />
<link rel="manifest" href="./manifest.json" />
<script src="./js/data.js" defer></script>
<script src="./js/stack.js" defer></script>
<script src="./js/projects.js" defer></script>
<script src="./js/workstations.js" defer></script>
<script src="./js/links.js" defer></script>
<title>ScuroNeko</title>
</head>
<body>
<header class="site-hero">
<div class="site-hero__main">
<p class="site-pill">scuroneko.dev · self-hosted</p>
<div class="site-title">
<h1>ScuroNeko</h1>
<span class="site-mark"></span>
</div>
<p class="site-subtitle">Go and JS developer</p>
<nav class="site-nav" aria-label="Page sections">
<a href="#stack-section">Stack</a>
<a href="#projects-section">Projects</a>
<a href="#links-section">Links</a>
<a href="#workstations-section">Workstations</a>
</nav>
</div>
</header>
<section class="block" id="stack-section">
<div class="section-heading">
<span class="section-index">01</span>
<h2>Stack</h2>
</div>
<p class="block-subtitle">
Tools I reach for when the task needs to ship.
</p>
<button class="stack-toggle" id="stack-toggle" type="button" hidden>
View all
</button>
<div class="stack-grid" id="stack"></div>
</section>
<section class="block" id="projects-section">
<div class="section-heading">
<span class="section-index">02</span>
<h2>Projects</h2>
</div>
<p class="block-subtitle">Things with enough shape to point at.</p>
<div class="project-grid" id="projects"></div>
</section>
<section class="block" id="links-section">
<div class="section-heading">
<span class="section-index">03</span>
<h2>Links</h2>
</div>
<p class="block-subtitle">
Places where I answer, publish, or keep code.
</p>
<div class="link-grid" id="links"></div>
</section>
<section class="block" id="workstations-section">
<div class="section-heading">
<span class="section-index">04</span>
<h2>Workstations</h2>
</div>
<p class="block-subtitle">Machines, peripherals, and daily drivers.</p>
<button
class="workstation-toggle"
id="workstation-toggle"
type="button"
hidden
>
View all
</button>
<div class="workstation-grid" id="workstations"></div>
</section>
</body>
</html>