diff options
| author | MohamedBassem <me@mbassem.com> | 2024-03-19 19:24:29 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-03-19 19:24:29 +0000 |
| commit | 2c03ee104d06e1be712356efa06a8b3cbe2d09dc (patch) | |
| tree | e11fee36ae95dfc9255e42054b55b048973a2448 /apps/landing/app/layout.tsx | |
| parent | eed65a424630be5e7d673c6ac3f19b72b2d79dc7 (diff) | |
| download | karakeep-2c03ee104d06e1be712356efa06a8b3cbe2d09dc.tar.zst | |
refactor: Move landing page to its own app to deploy it separately
Diffstat (limited to 'apps/landing/app/layout.tsx')
| -rw-r--r-- | apps/landing/app/layout.tsx | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/apps/landing/app/layout.tsx b/apps/landing/app/layout.tsx new file mode 100644 index 00000000..331c8b11 --- /dev/null +++ b/apps/landing/app/layout.tsx @@ -0,0 +1,25 @@ +import type { Metadata } from "next"; +import { Inter } from "next/font/google"; + +import "./globals.css"; + +import React from "react"; + +const inter = Inter({ subsets: ["latin"] }); + +export const metadata: Metadata = { + title: "Hoarder", + description: "Your AI powered second brain", +}; + +export default async function RootLayout({ + children, +}: Readonly<{ + children: React.ReactNode; +}>) { + return ( + <html lang="en"> + <body className={inter.className}>{children}</body> + </html> + ); +} |
