Skip to content

Commit

Permalink
docs: adjust HTML title and description
Browse files Browse the repository at this point in the history
  • Loading branch information
B4nan committed Jul 8, 2024
1 parent e0167d7 commit bc44745
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
10 changes: 8 additions & 2 deletions website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const packagesOrder = [

/** @type {Partial<import('@docusaurus/types').DocusaurusConfig>} */
module.exports = {
title: 'Crawlee',
title: 'Crawlee · Build reliable crawlers. Fast.',
tagline: 'Build reliable crawlers. Fast.',
url: 'https://crawlee.dev',
baseUrl: '/',
Expand Down Expand Up @@ -73,6 +73,7 @@ module.exports = {
},
blog: {
blogTitle: 'Crawlee Blog - learn how to build better scrapers',
// eslint-disable-next-line max-len
blogDescription: 'Guides and tutorials on using Crawlee, the most reliable open-source web scraping and browser automation library for JavaScript and Node.js developers.',
},
theme: {
Expand Down Expand Up @@ -241,7 +242,12 @@ module.exports = {
darkTheme: require('prism-react-renderer').themes.dracula,
additionalLanguages: ['docker', 'log', 'bash', 'diff', 'json'],
},
metadata: [],
metadata: [
// eslint-disable-next-line max-len
{ name: 'description', content: `Crawlee helps you build and maintain your crawlers. It's open source, but built by developers who scrape millions of pages every day for a living.` },
// eslint-disable-next-line max-len
{ name: 'og:description', content: `Crawlee helps you build and maintain your crawlers. It's open source, but built by developers who scrape millions of pages every day for a living.` },
],
image: 'img/crawlee-og.png',
footer: {
links: [
Expand Down
1 change: 0 additions & 1 deletion website/src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,6 @@ export default function Home() {
const { siteConfig } = useDocusaurusContext();
return (
<Layout
title={`${siteConfig.title} · ${siteConfig.tagline}`}
description={siteConfig.description}>
<Hero />
<Features />
Expand Down

0 comments on commit bc44745

Please sign in to comment.