Next.js app — chat interface, auth, settings, PWA manifest

This commit is contained in:
2026-04-26 02:05:09 -04:00
parent 241acf2b52
commit 996c4e19a7
12 changed files with 1161 additions and 122 deletions
+33 -18
View File
@@ -1,33 +1,48 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import type { Metadata, Viewport } from 'next';
import { IBM_Plex_Sans, IBM_Plex_Mono } from 'next/font/google';
import './globals.css';
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
const sans = IBM_Plex_Sans({
subsets: ['latin'],
weight: ['400', '500'],
variable: '--font-sans',
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
const mono = IBM_Plex_Mono({
subsets: ['latin'],
weight: ['400'],
variable: '--font-mono',
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: 'Aaron AI',
description: 'Personal knowledge assistant',
manifest: '/manifest.json',
appleWebApp: {
capable: true,
statusBarStyle: 'default',
title: 'Aaron AI',
},
};
export const viewport: Viewport = {
width: 'device-width',
initialScale: 1,
maximumScale: 1,
userScalable: false,
themeColor: '#2d5a3d',
};
export default function RootLayout({
children,
}: Readonly<{
}: {
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="en" suppressHydrationWarning>
<body className={`${sans.variable} ${mono.variable}`}>
{children}
</body>
</html>
);
}