w-lab-app/src/app/layout.tsx
gofnnp db1dd03f41 main
edit meta title
2025-06-15 16:29:17 +04:00

29 lines
1.1 KiB
TypeScript

import type { Metadata } from "next";
import { Inter } from "next/font/google";
import clsx from "clsx";
import styles from "./layout.module.scss"
import "@/styles/globals.css";
const inter = Inter({
subsets: ["latin", "cyrillic"],
display: "swap",
variable: "--font-inter",
});
export const metadata: Metadata = {
title: "Wit Apps | AURA",
description: "More than 14M people have experienced the value of our products. Wit Apps, headquartered in Silicon Valley, California, is a tech company that constructs global enterprises specializing in mobile-first products. We believe in the transformative power of technology, capable of turning chaos into miracles, thus enhancing the lives of millions. To realize this vision, we integrate leading expertise in artificial intelligence with a deep understanding of consumer needs and lifestyle trends.",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className={clsx(inter.variable, styles.body)}>{children}</body>
</html>
);
}