You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.3 KiB
45 lines
1.3 KiB
import type { Metadata } from "next";
|
|
import { Inter, Poppins } from "next/font/google";
|
|
import "./globals.css";
|
|
import { DevClickToComponent } from "@/components/dev-click-to-component";
|
|
|
|
const inter = Inter({
|
|
subsets: ["latin"],
|
|
variable: "--font-inter",
|
|
display: "swap",
|
|
});
|
|
|
|
const poppins = Poppins({
|
|
subsets: ["latin"],
|
|
weight: ["400", "500", "600"],
|
|
variable: "--font-poppins",
|
|
display: "swap",
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "TeamBy.ai - AI-Powered Management for Team Leads",
|
|
description:
|
|
"TeamBy unifies your work and uses AI to optimize workflows, meetings, and costs—so you can manage smarter without chasing updates.",
|
|
icons: {
|
|
icon: [
|
|
{ url: "/assets/images/logo_icon.svg", type: "image/svg+xml" },
|
|
{ url: "/favicon.ico", sizes: "any" },
|
|
],
|
|
apple: "/assets/images/logo_icon.png",
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" className={`${inter.variable} ${poppins.variable} dark bg-[#03070D]`}>
|
|
<body className="min-h-full flex flex-col bg-[#03070D] text-[#ffffff] font-sans antialiased selection:bg-blue-500/30 selection:text-blue-200">
|
|
{children}
|
|
{process.env.NODE_ENV === "development" && <DevClickToComponent />}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|