diff --git a/src/consts.ts b/src/consts.ts index 22911e4..9a4ca4f 100644 --- a/src/consts.ts +++ b/src/consts.ts @@ -1,5 +1,6 @@ // Place any global data in this file. // You can import this data from anywhere in your site by using the `import` keyword. -export const SITE_TITLE = 'Thinc Knowledgee'; -export const SITE_DESCRIPTION = 'Thinc Knowledge'; +export const SITE_TITLE = 'Thinc. Knowledge'; +export const SITE_DESCRIPTION = + 'แหล่งรวมความรู้ในการเริ่มต้นสำหรับการเริ่มต้นเป็น Developer ตั้งแต่ศูนย์จากบทความและ Roadmap ในการเริ่มต้นจากชมรม Thinc.'; diff --git a/src/templates/Roadmap.astro b/src/templates/Roadmap.astro index cca681f..ad9ff34 100644 --- a/src/templates/Roadmap.astro +++ b/src/templates/Roadmap.astro @@ -9,7 +9,7 @@ import BaseHead from '@/templates/BaseHead.astro'; type Props = CollectionEntry<'roadmap'>['data']; -const { title, description, pubDate, heroImage } = Astro.props; +const { title, description } = Astro.props; ---