mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-13 21:35:19 +00:00
33 lines
716 B
TypeScript
33 lines
716 B
TypeScript
import config from "@/lib/config"
|
|
import type { Metadata, Viewport } from "next"
|
|
import "./globals.css"
|
|
|
|
export const metadata: Metadata = {
|
|
title: {
|
|
template: "%s | TaxHacker",
|
|
default: config.app.title,
|
|
},
|
|
description: config.app.description,
|
|
icons: {
|
|
icon: "/favicon.ico",
|
|
shortcut: "/favicon.ico",
|
|
apple: "/apple-touch-icon.png",
|
|
},
|
|
manifest: "/site.webmanifest",
|
|
}
|
|
|
|
export const viewport: Viewport = {
|
|
themeColor: "#ffffff",
|
|
}
|
|
|
|
export default async function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en">
|
|
<head>
|
|
<meta name="theme-color" content="#ffffff" />
|
|
</head>
|
|
<body>{children}</body>
|
|
</html>
|
|
)
|
|
}
|