From 08d2cc46d0d61a51da980c00fc04a0759970bbd4 Mon Sep 17 00:00:00 2001 From: SindreKjelsrud Date: Tue, 22 Aug 2023 16:02:12 +0200 Subject: [PATCH] :bug: fix error of missing constant --- src/consts.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/consts.ts b/src/consts.ts index 2c90c7f..59bf8bf 100644 --- a/src/consts.ts +++ b/src/consts.ts @@ -1,4 +1,5 @@ // 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 = 'kjelsrud.dev'; \ No newline at end of file +export const SITE_TITLE = 'kjelsrud.dev'; +export const SITE_DESCRIPTION = 'kjelsrud.dev'; \ No newline at end of file