diff --git a/src/components/Seo.tsx b/src/components/Seo.tsx index 79f19f87c..34339a66d 100644 --- a/src/components/Seo.tsx +++ b/src/components/Seo.tsx @@ -36,7 +36,6 @@ function getDomain(languageCode: string): string { export const Seo = withRouter( ({ title, - description = 'The library for web and native user interfaces', image = '/images/og-default.png', router, children, @@ -50,11 +49,15 @@ export const Seo = withRouter( const pageTitle = isHomePage ? title : title + ' – React'; // Twitter's meta parser is not very good. const twitterTitle = pageTitle.replace(/[<>]/g, ''); + let description = isHomePage + ? 'React is the library for web and native user interfaces. Build user interfaces out of individual pieces called components written in JavaScript. React is designed to let you seamlessly combine components written by independent people, teams, and organizations.' + : 'The library for web and native user interfaces'; return (
{title != null &&