Skip to content

Commit

Permalink
feat: update title and description
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeocodes committed Nov 8, 2023
1 parent 9e37111 commit cc510ea
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import './globals.css'
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";

const inter = Inter({ subsets: ['latin'] })
const inter = Inter({ subsets: ["latin"] });

export const metadata: Metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
}
title: "Live transcription by Deepgram in Next.js",
description:
"Generated by create next app, live transcription by Deepgram in Next.js",
};

export default function RootLayout({
children,
}: {
children: React.ReactNode
children: React.ReactNode;
}) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
)
);
}

0 comments on commit cc510ea

Please sign in to comment.