diff options
author | 2021-10-25 13:59:53 -0400 | |
---|---|---|
committer | 2021-10-25 12:59:53 -0500 | |
commit | 059aff923b27b7758fc4daffdc1b2506b6fb0a8c (patch) | |
tree | 8f609c59c65e13334e7ca2bcaed6002a8a55dcbf /examples/portfolio/src/components | |
parent | ae0e7210c738e8d2b999ee75d31c5d1ee72418a6 (diff) | |
download | astro-059aff923b27b7758fc4daffdc1b2506b6fb0a8c.tar.gz astro-059aff923b27b7758fc4daffdc1b2506b6fb0a8c.tar.zst astro-059aff923b27b7758fc4daffdc1b2506b6fb0a8c.zip |
Added portfolio example meta description (#1625)
Diffstat (limited to 'examples/portfolio/src/components')
-rw-r--r-- | examples/portfolio/src/components/MainHead.astro | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/portfolio/src/components/MainHead.astro b/examples/portfolio/src/components/MainHead.astro index 1a55794ab..74eb59164 100644 --- a/examples/portfolio/src/components/MainHead.astro +++ b/examples/portfolio/src/components/MainHead.astro @@ -1,8 +1,9 @@ --- -const { title = 'Jeanine White: Personal Site' } = Astro.props; +const { title = 'Jeanine White: Personal Site', description = 'The personal site of Jeanine White' } = Astro.props; --- <meta charset="UTF-8"> +<meta name="description" property="og:description" content={description}> <meta name="viewport" content="width=device-width"> <title>{title}</title> |