mirror of
https://github.com/lukaszraczylo/beat-delivery-methodology.git
synced 2026-06-10 23:09:09 +00:00
62 lines
3.2 KiB
HTML
62 lines
3.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="scroll-smooth">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="theme-color" content="#3b82f6" />
|
|
|
|
<!-- Primary Meta Tags -->
|
|
<title>BEAT - Balanced. Empowered. Async. Teams.</title>
|
|
<meta name="description" content="The BEAT Manifesto - A software delivery methodology built for how developers actually work. Deep work, async communication, individual autonomy, sustainable pace." />
|
|
<meta name="keywords" content="BEAT, software development methodology, agile alternative, remote work, async communication, deep work, developer productivity" />
|
|
<meta name="author" content="Lukasz Raczylo" />
|
|
|
|
<!-- Open Graph / Facebook -->
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:title" content="BEAT - Balanced. Empowered. Async. Teams." />
|
|
<meta property="og:description" content="A software delivery methodology built for how developers actually work." />
|
|
<meta property="og:site_name" content="BEAT Manifesto" />
|
|
|
|
<!-- Twitter -->
|
|
<meta property="twitter:card" content="summary_large_image" />
|
|
<meta property="twitter:title" content="BEAT - Balanced. Empowered. Async. Teams." />
|
|
<meta property="twitter:description" content="A software delivery methodology built for how developers actually work." />
|
|
|
|
<!-- Preconnect for performance -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link rel="dns-prefetch" href="https://cdnjs.cloudflare.com" />
|
|
|
|
<!-- Fonts -->
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet" />
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
|
|
|
<!-- Dark mode initialization (prevents flash) -->
|
|
<script>
|
|
(function() {
|
|
const theme = localStorage.theme;
|
|
const systemDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
|
|
if (theme === 'dark' || (!theme && systemDark)) {
|
|
document.documentElement.classList.add('dark');
|
|
}
|
|
})();
|
|
</script>
|
|
</head>
|
|
<body class="bg-white dark:bg-gray-900 text-gray-900 dark:text-gray-100 transition-colors duration-300 antialiased">
|
|
<!-- Skip to main content link for accessibility -->
|
|
<a href="#main-content" class="skip-link">Skip to main content</a>
|
|
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.js"></script>
|
|
|
|
<!-- No-JS fallback -->
|
|
<noscript>
|
|
<div style="padding: 2rem; text-align: center; font-family: system-ui, sans-serif;">
|
|
<h1 style="font-size: 1.5rem; margin-bottom: 1rem;">JavaScript Required</h1>
|
|
<p>This website requires JavaScript to function properly. Please enable JavaScript in your browser settings.</p>
|
|
</div>
|
|
</noscript>
|
|
</body>
|
|
</html>
|