You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
562 B
22 lines
562 B
import type { Metadata } from 'next';
|
|
import './globals.css';
|
|
import Sidebar from '@/components/layout/Sidebar';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Second Brain',
|
|
description: 'Your AI-powered personal knowledge base',
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en">
|
|
<body className="flex h-screen overflow-hidden bg-slate-50">
|
|
<Sidebar />
|
|
<main className="flex-1 overflow-y-auto p-6">
|
|
{children}
|
|
</main>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|