From eb32390091f84bd6338b72fa03bfcd2bab098376 Mon Sep 17 00:00:00 2001 From: Timo Glastra Date: Fri, 12 Jan 2024 12:35:25 +0700 Subject: [PATCH] name Signed-off-by: Timo Glastra --- app/app/layout.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/app/app/layout.tsx b/app/app/layout.tsx index 40e027f..1c6d988 100644 --- a/app/app/layout.tsx +++ b/app/app/layout.tsx @@ -1,22 +1,22 @@ -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: "OpenID4VC Playground", + description: "By Animo", +}; export default function RootLayout({ children, }: { - children: React.ReactNode + children: React.ReactNode; }) { return ( {children} - ) + ); }