Spaces:
Running
Running
File size: 2,630 Bytes
c5c5c2b e537317 c5c5c2b e537317 c5c5c2b e537317 c5c5c2b e537317 c5c5c2b e537317 c5c5c2b e537317 c5c5c2b e537317 c5c5c2b e537317 c5c5c2b e537317 c5c5c2b e537317 c5c5c2b e537317 c5c5c2b e537317 c5c5c2b 32e4572 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Beyond Logic Labs</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'SF Mono', 'Fira Code', monospace;
min-height: 100vh;
background: linear-gradient(135deg, #e0f7fa 0%, #fce4ec 50%, #fff 100%);
display: flex;
align-items: center;
justify-content: center;
padding: 3rem;
}
.container {
max-width: 700px;
}
.label {
color: #00bcd4;
font-size: 0.75rem;
letter-spacing: 0.2em;
margin-bottom: 1rem;
}
h1 {
font-size: 3.5rem;
font-weight: 800;
margin-bottom: 1.5rem;
line-height: 1.1;
}
h1 span {
background: linear-gradient(90deg, #00bcd4, #e91e63);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
p {
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
color: #444;
font-size: 1.1rem;
line-height: 1.7;
margin-bottom: 2rem;
}
.buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
.btn {
padding: 0.875rem 1.75rem;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 0.85rem;
letter-spacing: 0.05em;
transition: transform 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
background: linear-gradient(90deg, #00bcd4, #26c6da);
color: white;
}
.btn-secondary {
background: white;
color: #333;
border: 1px solid #ddd;
}
</style>
</head>
<body>
<div class="container">
<div class="label">> EXPERIMENTAL SOFTWARE LAB</div>
<h1>Building <span>Beyond</span></h1>
<p>Fine-tuned LLMs for game NPCs. Knowledge-grounded generation with hallucination prevention via multi-pass verification.</p>
<div class="buttons">
<a href="https://beyondlogiclabs.com/loreguard" class="btn btn-primary">EXPLORE LOREGUARD</a>
<a href="https://github.com/beyond-logic-labs" class="btn btn-secondary">GITHUB</a>
</div>
</div>
</body>
</html>
|