Skip to content

Commit

Permalink
Merge pull request #5 from thinc-org/fix/seo
Browse files Browse the repository at this point in the history
chore: fix title and description
  • Loading branch information
ebonian authored Oct 9, 2023
2 parents b94d95e + 92c9ec0 commit 27dd66a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/pages/blog/index.astro
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
---
import Base from '@/templates/Base.astro';
import { Blogs, Title } from '@/partials/blog/Blog';
import { SITE_DESCRIPTION, SITE_TITLE } from '@/consts';
---

<Base title="Thinc Roadmap" description="Thinc Roadmap">
<Base title={SITE_TITLE} description={SITE_DESCRIPTION}>
<Title />
<Blogs />
</Base>
3 changes: 2 additions & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
import { getCollection } from 'astro:content';
import { Hero, Roadmaps, Blogs } from '@/partials/Landing';
import Base from '@/templates/Base.astro';
import { SITE_DESCRIPTION, SITE_TITLE } from '@/consts';
const roadmaps = await getCollection('roadmap');
---

<Base title="Thinc Roadmap" description="Thinc Roadmap">
<Base title={SITE_TITLE} description={SITE_DESCRIPTION}>
<Hero />
<Roadmaps roadmaps={roadmaps} />
<Blogs client:load />
Expand Down
3 changes: 2 additions & 1 deletion src/pages/roadmap/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
import { getCollection } from 'astro:content';
import Base from '@/templates/Base.astro';
import { Title, Roadmaps } from '@/partials/roadmap/Roadmap';
import { SITE_DESCRIPTION, SITE_TITLE } from '@/consts';
const roadmaps = await getCollection('roadmap');
---

<Base title="Thinc Roadmap" description="Thinc Roadmap">
<Base title={SITE_TITLE} description={SITE_DESCRIPTION}>
<Title />
<Roadmaps roadmaps={roadmaps} />
</Base>

0 comments on commit 27dd66a

Please sign in to comment.