From 82695e0fe092635bc4444757875ffddd5f2b84c9 Mon Sep 17 00:00:00 2001 From: Alan Alickovic Date: Tue, 3 Sep 2024 07:46:04 +0200 Subject: [PATCH] cleanup --- apps/nextjs-app/src/app/auth/layout.tsx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/apps/nextjs-app/src/app/auth/layout.tsx b/apps/nextjs-app/src/app/auth/layout.tsx index a8310152..28a5c00f 100644 --- a/apps/nextjs-app/src/app/auth/layout.tsx +++ b/apps/nextjs-app/src/app/auth/layout.tsx @@ -2,12 +2,9 @@ import { ReactNode } from 'react'; import { AuthLayout as AuthLayoutComponent } from '@/components/layouts/auth-layout'; -export const generateMetadata = (...args: any[]) => { - console.log(args); - return { - title: 'Bulletproof React', - description: 'Welcome to Bulletproof React', - }; +export const metadata = { + title: 'Bulletproof React', + description: 'Welcome to Bulletproof React', }; const AuthLayout = ({ children }: { children: ReactNode }) => {