diff options
Diffstat (limited to 'webapp/app/layout.tsx')
| -rw-r--r-- | webapp/app/layout.tsx | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/webapp/app/layout.tsx b/webapp/app/layout.tsx new file mode 100644 index 0000000..6907ee0 --- /dev/null +++ b/webapp/app/layout.tsx @@ -0,0 +1,23 @@ +import type { Metadata } from "next"; +import { Inter } from "next/font/google"; +import "./globals.css"; + +const inter = Inter({ subsets: ["latin"] }); + +export const metadata: Metadata = { + title: "OpenAI Realtime + Twilio", + description: + "Sample phone call assistant app for OpenAI Realtime API and Twilio", +}; + +export default function RootLayout({ + children, +}: Readonly<{ + children: React.ReactNode; +}>) { + return ( + <html lang="en"> + <body className={inter.className}>{children}</body> + </html> + ); +} |
