Skip to content

Commit 3413c01

Browse files
committed
Fixed title and description
1 parent d4bb372 commit 3413c01

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

website/src/pages/index.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ import HomepageSponsors from '@site/src/components/HomepageSponsors';
77

88
import styles from './index.module.css';
99

10+
const description = `Echo is a high-performance web framework for building robust and scalable applications in Go.
11+
With its minimalist design and powerful features, Echo enables developers to create efficient APIs and web
12+
applications with ease. Harness the speed, flexibility, and simplicity of Echo to accelerate your Go development
13+
projects.`;
14+
1015
function HomepageHeader() {
1116
const {siteConfig} = useDocusaurusContext();
1217
return (
@@ -28,8 +33,8 @@ export default function Home() {
2833
const {siteConfig} = useDocusaurusContext();
2934
return (
3035
<Layout
31-
title={`Hello from ${siteConfig.title}`}
32-
description="Description will go into a meta tag in <head />">
36+
title={`${siteConfig.title} - ${siteConfig.tagline}`}
37+
description={description}>
3338
<HomepageHeader />
3439
<main>
3540
<HomepageFeatures />

0 commit comments

Comments
 (0)