diff --git a/src/consts.ts b/src/consts.ts index 728b4f1..b99decd 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 = 'Tarasis.net V5 by Robert McGovern' -export const SITE_DESCRIPTION = 'Personal website & blog of Robert McGovern' +export const SITE_TITLE = 'Tarasis.net V5 WIP by Robert McGovern' +export const SITE_DESCRIPTION = + 'WIP rebuild of the personal website & blog of Robert McGovern, moving from Eleventy/11ty to Astro' diff --git a/src/pages/countries/index.astro b/src/pages/countries/index.astro index 33d367f..d55f8de 100644 --- a/src/pages/countries/index.astro +++ b/src/pages/countries/index.astro @@ -4,7 +4,6 @@ import Header from '../../components/Header.astro' import Footer from '../../components/Footer.astro' import { SITE_TITLE, SITE_DESCRIPTION } from '../../consts' -import type { GetStaticPaths } from 'astro' import { getCollection } from 'astro:content' const countries = await getCollection('countries') diff --git a/src/pages/index.astro b/src/pages/index.astro index 16c0614..9e4664a 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -71,6 +71,10 @@ import { SITE_TITLE, SITE_DESCRIPTION } from '../consts'