Add astro framework and update nodejs

This commit is contained in:
2026-03-07 11:06:07 +03:00
parent 7d488fbdf2
commit 08a160a6a1
10 changed files with 8191 additions and 6704 deletions

13
src/pages/index.astro Normal file
View File

@@ -0,0 +1,13 @@
---
---
<html lang="ru">
<head>
<meta charset="utf-8" />
<title>Антон Вахрушев</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<h1>Антон Вахрушев</h1>
<p>Сайт в процессе обновления.</p>
</body>
</html>

12
src/styles/global.css Normal file
View File

@@ -0,0 +1,12 @@
@import 'tailwindcss';
@theme {
--font-serif: 'PT Serif', serif;
--font-mono: 'Source Code Pro', monospace;
--color-text: #24292e;
--color-link: #0366d6;
--color-rule: #e6e6e6;
--breakpoint-content: 740px;
}