mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-07 08:26:15 +00:00
31 lines
741 B
TypeScript
31 lines
741 B
TypeScript
import type { Metadata } from "next"
|
|
import { Space_Grotesk } from "next/font/google"
|
|
import type { ReactNode } from "react"
|
|
import "@ui/globals.css"
|
|
import "./globals.css"
|
|
import { Providers } from "./providers"
|
|
|
|
const font = Space_Grotesk({
|
|
subsets: ["latin"],
|
|
variable: "--font-sans",
|
|
})
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Supermemory",
|
|
description: "Your memories, wherever you are",
|
|
}
|
|
|
|
export default function RootLayout({ children }: { children: ReactNode }) {
|
|
return (
|
|
<html
|
|
lang="en"
|
|
className="dark"
|
|
style={{ colorScheme: "dark" }}
|
|
suppressHydrationWarning
|
|
>
|
|
<body className={`${font.variable} antialiased`} suppressHydrationWarning>
|
|
<Providers>{children}</Providers>
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|