Initial commit from Astro

This commit is contained in:
houston[bot]
2024-09-27 17:16:25 +02:00
committed by h4ckx0r
commit 4668e03fb4
13 changed files with 5886 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<script lang="ts">
let count = 0;
function add() {
count += 1;
}
function subtract() {
count -= 1;
}
</script>
<div class="counter">
<button on:click={subtract}>-</button>
<pre>{count}</pre>
<button on:click={add}>+</button>
</div>
<div class="message">
<slot />
</div>
<style>
.counter {
display: grid;
font-size: 2em;
grid-template-columns: repeat(3, minmax(0, 1fr));
margin-top: 2em;
place-items: center;
}
.message {
text-align: center;
}
</style>

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

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

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

@@ -0,0 +1,33 @@
---
// Component Imports
import Counter from '../components/Counter.svelte';
// Full Astro Component Syntax:
// https://docs.astro.build/basics/astro-components/
---
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<style>
html,
body {
font-family: system-ui;
margin: 0;
}
body {
padding: 2rem;
}
</style>
</head>
<body>
<main>
<Counter client:visible>
<h1>Hello, Svelte!</h1>
</Counter>
</main>
</body>
</html>