This repository has been archived on 2026-02-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
diarywhisper/app/layout.tsx

19 lines
342 B
TypeScript

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>
);
}