feat: add base homepage

This commit is contained in:
2025-01-18 21:58:20 +01:00
parent 3abe88c7a2
commit 4f3a7b0cdd
3 changed files with 118 additions and 0 deletions

18
app/layout.tsx Normal file
View File

@@ -0,0 +1,18 @@
import type { Metadata } from 'next';
export const metadata: Metadata = {
title: 'DiaryWhisper',
description: 'Siri-enabled diary tracker for expenses and day logs'
};
export default function RootLayout({
children
}: {
children: React.ReactNode;
}) {
return (
<html lang='en'>
<body>{children}</body>
</html>
);
}