1
0
Fork 0

Initial commit from Astro

This commit is contained in:
houston[bot] 2024-11-02 23:03:12 +03:00 committed by kogeletey
commit 38fb9a5189
Signed by: kglt
GPG key ID: 386DEE24B60BD996
11 changed files with 136 additions and 0 deletions

1
src/env.d.ts vendored Normal file
View file

@ -0,0 +1 @@
/// <reference path="../.astro/types.d.ts" />

16
src/pages/index.astro Normal file
View file

@ -0,0 +1,16 @@
---
---
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<title>Astro</title>
</head>
<body>
<h1>Astro</h1>
</body>
</html>