1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-11-23 12:06:07 -05:00

refactor constants

This commit is contained in:
2025-04-11 14:50:15 -04:00
parent 0ade75716e
commit 37fa6101f6
11 changed files with 54 additions and 37 deletions

View File

@@ -1,4 +1,5 @@
import * as config from "../lib/config";
import { SITE_LOCALE } from "../lib/config/constants";
import type { MetadataRoute } from "next";
const manifest = (): MetadataRoute.Manifest => {
@@ -6,8 +7,8 @@ const manifest = (): MetadataRoute.Manifest => {
name: config.siteName,
// eslint-disable-next-line camelcase
short_name: config.siteName,
description: config.longDescription,
lang: config.siteLocale,
description: config.description,
lang: SITE_LOCALE,
icons: [
{
src: "/icon.png",