initial file content cleanup

This commit is contained in:
Marco Kohn 2024-12-23 13:28:11 +01:00
parent c2d5613343
commit 3ef5b9e59d
2 changed files with 7 additions and 9 deletions

View File

@ -1,3 +1,4 @@
<!doctype html>
<html lang="en">
<head>
@ -12,11 +13,8 @@
</body>
</html>
<style>
html,
body {
margin: 0;
width: 100%;
height: 100%;
}
<style is:global>
/* Unscoped, delivered as-is to the browser.
Applies to all <h1> tags on your site. */
h1 { color: red; }
</style>

View File

@ -1,5 +1,5 @@
---
import Welcome from '../components/Welcome.astro';
import Layout from '../layouts/Layout.astro';
// Welcome to Astro! Wondering what to do next? Check out the Astro documentation at https://docs.astro.build
@ -7,5 +7,5 @@ import Layout from '../layouts/Layout.astro';
---
<Layout>
<Welcome />
<h1>bla bla bla</h1>
</Layout>