16 lines
366 B
TypeScript
16 lines
366 B
TypeScript
import type { Metadata } from 'next';
|
|
import { ReactNode } from 'react';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'DiaryWhisper',
|
|
description: 'Siri-enabled diary tracker for expenses and day logs'
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: ReactNode }) {
|
|
return (
|
|
<html lang='en'>
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|