1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-02-08 21:59:39 +01:00

feat: themeColor metadata

This commit is contained in:
Théo LUDWIG 2025-02-08 20:51:22 +01:00
parent 43d91bfc28
commit 38eb296088
Signed by: theoludwig
GPG Key ID: ADFE5A563D718F3B

View File

@ -2,7 +2,7 @@ import "@repo/config-tailwind/styles.css"
import type { LocaleProps } from "@repo/i18n/routing"
import type { Locale } from "@repo/utils/constants"
import { LOCALES } from "@repo/utils/constants"
import type { Metadata } from "next"
import type { Metadata, Viewport } from "next"
import { NextIntlClientProvider } from "next-intl"
import {
getMessages,
@ -13,6 +13,10 @@ import Script from "next/script"
const DOMAIN = "theoludwig.fr"
export const viewport: Viewport = {
themeColor: "#00aeff",
}
export const generateMetadata = async ({
params,
}: LocaleProps): Promise<Metadata> => {