Skip to content

Commit

Permalink
refactor(constants): set constants as const
Browse files Browse the repository at this point in the history
  • Loading branch information
Epoxide committed Jul 23, 2024
1 parent b66b255 commit 10966ae
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/constants/components/footer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ export const FOOTER = {
ARIA_LABEL: 'Epoxide on Discord',
},
],
}
} as const
8 changes: 4 additions & 4 deletions packages/constants/meta.ts
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
export const META = {
TITLE: 'epoxide',
DESCRIPTION: 'Library and landing page for epoxide.',
COLOR_SCHEME: 'dark' as const,
COLOR_SCHEME: 'dark',
THEME_COLOR: 'rgb(35, 38, 40)',
SITE_NAME: 'epoxide',
URL: 'https://epoxide.se',
LOCALE: 'en-US',
TYPE: 'website' as const,
TYPE: 'website',
OG_IMAGE: '/opengraph-image.png',
TWITTER_IMAGE: '/twitter-image.png',
TWITTER_CREATOR: '@TLEpoxide',
TWITTER_CREATOR_ID: '870776905',
TWITTER_CARD: 'summary_large_image' as const,
TWITTER_CARD: 'summary_large_image',
GOOGLE_SITE_VERIFICATION: 'wzqG8ce2wQmwPODNX0HFf9TtNr5xSedSfF6_0nZKWMc',
}
} as const
2 changes: 1 addition & 1 deletion packages/constants/pages/404.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const NOT_FOUND = {
TITLE: 'Oops! That page does not exist.',
GO_BACK: 'Go back to the landing page',
}
} as const

0 comments on commit 10966ae

Please sign in to comment.