Vercel ai gateway (#7)

* feat: use vercel ai gateway

* chore: update UI
This commit is contained in:
2025-10-11 12:15:30 +02:00
committed by GitHub
parent ff84b75847
commit 7c9635ba83
14 changed files with 2348 additions and 1809 deletions

View File

@@ -1,15 +1,12 @@
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: React.ReactNode;
}) {
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang='en'>
<body>{children}</body>