This commit is contained in:
Nikita
2024-07-15 20:08:18 +04:00
commit 228faf226a
19 changed files with 335 additions and 0 deletions

22
web/app/layout.tsx Normal file
View File

@@ -0,0 +1,22 @@
import type { Metadata } from "next"
import { Inter } from "next/font/google"
import "./globals.css"
const inter = Inter({ subsets: ["latin"] })
export const metadata: Metadata = {
title: "Learn Anything",
description: "Organize world's knowledge, explore connections and curate learning paths"
}
export default function RootLayout({
children
}: Readonly<{
children: React.ReactNode
}>) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
)
}