From 4114d533b2da5474fd78f42090d6479b7196eaf5 Mon Sep 17 00:00:00 2001 From: Ben Sherriff Date: Thu, 14 Sep 2023 08:01:41 -0400 Subject: [PATCH] Reword metadata in layout --- weather-ui/src/app/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/weather-ui/src/app/layout.tsx b/weather-ui/src/app/layout.tsx index c662172..7b416f9 100644 --- a/weather-ui/src/app/layout.tsx +++ b/weather-ui/src/app/layout.tsx @@ -10,8 +10,8 @@ import { Inter } from 'next/font/google'; const inter = Inter({ subsets: ['latin'] }); export const metadata = { - title: 'Create Next App', - description: 'Generated by create next app', + title: 'Aviation Weather', + description: '' }; export default function RootLayout({ children }: { children: React.ReactNode }) {