astro?????

main
Patrick Cleavelin 2025-11-03 17:56:06 -06:00
commit aee22b81b8
9 changed files with 3119 additions and 0 deletions

0
.gitignore vendored Normal file
View File

6
ui/.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
.env
.DS_Store
node_modules/
dist/
.astro/

3
ui/astro.config.mjs Normal file
View File

@ -0,0 +1,3 @@
import { defineConfig } from "astro/config";
export default defineConfig({})

18
ui/package.json Normal file
View File

@ -0,0 +1,18 @@
{
"name": "ui",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preivew": "astro preivew"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.20.0",
"dependencies": {
"astro": "^5.15.3"
}
}

3064
ui/pnpm-lock.yaml Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,3 @@
---
---
<a href="/">Home</a>

18
ui/src/pages/index.astro Normal file
View File

@ -0,0 +1,18 @@
---
import '../styles/global.css';
import Navigation from '../components/Navigation.astro';
---
<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>
<Navigation />
<h1>Astro</h1>
</body>
</html>

4
ui/src/styles/global.css Normal file
View File

@ -0,0 +1,4 @@
html {
background-color: #f1f5f9;
font-family: sans-serif;
}

3
ui/tsconfig.json Normal file
View File

@ -0,0 +1,3 @@
{
"extends": "astro/tsconfigs/base"
}