diff options
author | 2021-03-29 11:33:14 -0700 | |
---|---|---|
committer | 2021-03-29 11:33:14 -0700 | |
commit | d2d0ddad82d9b129bb62d7879b44f3530bb41471 (patch) | |
tree | 9781e9d6b129717a42194354ec82eb3891757097 | |
parent | 33c7b953b515797569870059022a53d16421792b (diff) | |
download | astro-d2d0ddad82d9b129bb62d7879b44f3530bb41471.tar.gz astro-d2d0ddad82d9b129bb62d7879b44f3530bb41471.tar.zst astro-d2d0ddad82d9b129bb62d7879b44f3530bb41471.zip |
update landing page
-rw-r--r-- | examples/landing-page/.gitignore | 3 | ||||
-rw-r--r-- | examples/landing-page/astro/pages/index.astro | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/examples/landing-page/.gitignore b/examples/landing-page/.gitignore index 888e5be06..6a66fc8ca 100644 --- a/examples/landing-page/.gitignore +++ b/examples/landing-page/.gitignore @@ -1,4 +1,5 @@ .DS_Store build node_modules -_site
\ No newline at end of file +_site +.vercel diff --git a/examples/landing-page/astro/pages/index.astro b/examples/landing-page/astro/pages/index.astro index ac699f763..71ff5b399 100644 --- a/examples/landing-page/astro/pages/index.astro +++ b/examples/landing-page/astro/pages/index.astro @@ -1,6 +1,6 @@ --- let title = 'astro.build'; -let description = 'A better way to build a (static) site.'; +let description = 'web development, evolved.'; let permalink = 'https://astro.build/'; --- |