-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Update index.astro with Astro configuration and metadata
- Loading branch information
1 parent
4107a79
commit 056b433
Showing
1 changed file
with
10 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |