diff --git a/app/layout.tsx b/app/layout.tsx new file mode 100644 index 0000000..18338df --- /dev/null +++ b/app/layout.tsx @@ -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 ( + +
{children} + + ); +} diff --git a/app/page.tsx b/app/page.tsx new file mode 100644 index 0000000..6d26e42 --- /dev/null +++ b/app/page.tsx @@ -0,0 +1,88 @@ +'use client'; + +import React from 'react'; + +export default function Home() { + return ( + <> +Anthropic-based power up for Siri Shortcuts
+