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 ( + <> +
+
+

Siri Shortcuts v1.0.0

+

Anthropic-based power up for Siri Shortcuts

+
+ +
+
Loading system components...
+
Initializing shortcuts... OK
+
Starting server... OK
+
System ready_
+
+ +
+ Status: OPERATIONAL + Last Backup: 2024-01-18 14:30 UTC +
+
+ + + + + + ); +} diff --git a/app/robots.ts b/app/robots.ts new file mode 100644 index 0000000..5d45231 --- /dev/null +++ b/app/robots.ts @@ -0,0 +1,12 @@ +import { MetadataRoute } from 'next'; + +export default function robots(): MetadataRoute.Robots { + return { + rules: [ + { + userAgent: '*', + disallow: '/' + } + ] + }; +}