This commit is contained in:
2026-03-22 13:01:46 -03:00
parent af0910f428
commit 6694bce736
52 changed files with 4949 additions and 102 deletions
+18 -26
View File
@@ -1,33 +1,25 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
import type { Metadata } from 'next'
import './globals.css'
import { Toaster } from '@/components/ui/sonner'
import { Header } from '@/components/header'
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
title: 'Recall - Gestor de Conocimiento Personal',
description: 'Captura rápido, relaciona solo, encuentra cuando importa',
}
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
}: {
children: React.ReactNode
}) {
return (
<html
lang="en"
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col">{children}</body>
<html lang="es">
<body className="min-h-screen bg-white">
<Header />
{children}
<Toaster />
</body>
</html>
);
}
)
}