Write your first line of Astro
Ta treść nie jest jeszcze dostępna w Twoim języku.
Przygotuj się na…
- Make your first edit to your new website
Edit your home page
Section titled Edit your home page-
In your code editor, navigate in the Explorer file pane to
src/pages/index.astro
and click on it to open the file’s contents in an editable tab.The contents of your
index.astro
file should look like this:src/pages/index.astro ------<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>Astro</h1></body></html>