my-favs/frontend/index.html
RamonCalvo 2a64013ef7 feat: redesign frontend with editorial typography layout
R-A-M-O-N navigation sections inspired by font specimen design.
Dark theme, Inter font, split layout with letter tabs.
Each section maps to a bookmark category by first letter.

- R: Recursos (tools & references)
- A: Aprendizaje (learning & growth)
- M: Mundo (exploration & ideas)
- O: Oficio (craft & work)
- N: Naturaleza (geek & personal) — default view

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-28 20:27:48 -06:00

15 lines
529 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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@100;300;400;700;900&display=swap" rel="stylesheet" />
<title>ramon</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>