Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ebonian committed Oct 10, 2023
2 parents 29dcce4 + 27dd66a commit eb25587
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 eb25587

Please sign in to comment.