Add project files.

This commit is contained in:
Ahyan Z 2026-05-25 17:58:58 +01:00
parent 417c6b71cf
commit 17d23f0b6d
4 changed files with 4868 additions and 0 deletions

1
.astro/types.d.ts vendored Normal file
View file

@ -0,0 +1 @@
/// <reference types="astro/client" />

4837
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

18
package.json Normal file
View file

@ -0,0 +1,18 @@
{
"name": "assets",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"astro": "^6.3.7"
}
}

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

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Azzy Assets</title>
<link rel="favicon" href="https://azzyaz.net/favicon.png">
</head>
<body>
<p>Well what are you doing here? This is for assets. Head over to the main page <a href="https://azzyaz.net">here</a>.</p>
</body>
</html>