mirror of https://github.com/pcleavelin/a_ci.git
astro?????
commit
aee22b81b8
|
|
@ -0,0 +1,6 @@
|
|||
.env
|
||||
.DS_Store
|
||||
|
||||
node_modules/
|
||||
dist/
|
||||
.astro/
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
import { defineConfig } from "astro/config";
|
||||
|
||||
export default defineConfig({})
|
||||
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
---
|
||||
<a href="/">Home</a>
|
||||
|
|
@ -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>
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
html {
|
||||
background-color: #f1f5f9;
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"extends": "astro/tsconfigs/base"
|
||||
}
|
||||
Loading…
Reference in New Issue