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

View File

@ -1,5 +1,5 @@
--- ---
import Welcome from '../components/Welcome.astro';
import Layout from '../layouts/Layout.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 // 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> <Layout>
<Welcome /> <h1>bla bla bla</h1>
</Layout> </Layout>