34 lines
934 B
TypeScript
34 lines
934 B
TypeScript
import type { Metadata, Viewport } from "next";
|
|
import { GeistSans } from "geist/font/sans";
|
|
import "./globals.css";
|
|
import { Geist } from "next/font/google";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const geist = Geist({subsets:['latin'],variable:'--font-sans'});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "cm WhatsApp Bot",
|
|
description: "Self-hosted WhatsApp reminder bot",
|
|
applicationName: "cm WhatsApp Bot",
|
|
appleWebApp: {
|
|
capable: true,
|
|
title: "cm WA Bot",
|
|
statusBarStyle: "default",
|
|
},
|
|
};
|
|
|
|
export const viewport: Viewport = {
|
|
themeColor: [
|
|
{ media: "(prefers-color-scheme: light)", color: "#ffffff" },
|
|
{ media: "(prefers-color-scheme: dark)", color: "#0a0a0a" },
|
|
],
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en" className={cn(GeistSans.className, "font-sans", geist.variable)}>
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|