Skip to content

Commit b086d98

Browse files
authored
Merge pull request #289 from sparksuite/fix-seo-issues
Fix SEO issues
2 parents 1612e9b + fa512e3 commit b086d98

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

website/src/pages/demo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const Demo: React.FC = () => {
1515

1616
// Return JSX
1717
return (
18-
<Layout title={`Demo`} description='Easily validate CSS using W3C’s public CSS validator service'>
18+
<Layout title={`Demo`} description='A simple Hook for creating fully accessible dropdown menus in React'>
1919
<header className={clsx('hero hero--primary', styles.heroBanner)}>
2020
<div className='container'>
2121
<h1 className='hero__title'>Demo</h1>

website/src/pages/index.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,10 @@ const Home: React.FC = () => {
6060

6161
// Return JSX
6262
return (
63-
<Layout title={`Modern CSS Validation`} description='Easily validate CSS using W3C’s public CSS validator service'>
63+
<Layout
64+
title={`React Accessible Dropdown Menu Hook`}
65+
description='A simple Hook for creating fully accessible dropdown menus in React'
66+
>
6467
<header className={clsx('hero hero--primary', styles.heroBanner)}>
6568
<div className='container'>
6669
<h1 className='hero__title'>{siteConfig.title}</h1>

0 commit comments

Comments
 (0)