Files
portabase/app/layout.tsx
T
67246efafc feat: adding basic end-to-end testing and ci workflow (#225)
* feat: add end-to-end testing

* chore: fix bug in github action.

---------

Co-authored-by: charlesgauthereau <charles.gauthereau@soluce-technologies.com>
Co-authored-by: killianlarcher <killian.larcher@soluce-technologies.com>
2026-03-18 19:47:41 +01:00

43 lines
1.0 KiB
TypeScript

import type { Metadata } from "next";
import type React from "react";
import "./globals.css";
import { ConsoleSilencer } from "@/components/wrappers/common/console-silencer";
import { author, geistMono, poppins } from "@/fonts/fonts";
import { cn } from "@/lib/utils";
import { Providers } from "./providers";
const title = process.env.PROJECT_NAME ?? "Portabase";
export const metadata: Metadata = {
title: {
default: title,
template: `%s - ${title}`,
},
description: process.env.PROJECT_DESCRIPTION ?? undefined,
};
export default async function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<head>
<meta name="apple-mobile-web-app-title" content={title} />
</head>
<body
className={cn(
poppins.variable,
author.variable,
geistMono.variable,
"font-sans h-full",
)}
>
<ConsoleSilencer />
<Providers>{children}</Providers>
</body>
</html>
);
}