Skip to content

Commit

Permalink
chore: Update index.astro with Astro configuration and metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
andreilgeorgescu authored Jul 14, 2024
1 parent 4107a79 commit 056b433
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
---
// Welcome to Astro! Everything between these triple-dash code fences
// is your "component frontmatter". It never runs in the browser.
console.log('This runs in your terminal, not the browser!');
---
<!-- Below is your "component template." It's just HTML, but with
some magic sprinkled in to help you build great templates. -->
<html>

<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>
<h1>Hello, World!</h1>
<h1>My Astro Site</h1>
</body>
</html>
<style>
h1 {
color: orange;
}
</style>

0 comments on commit 056b433

Please sign in to comment.