Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
alan2207 committed Sep 3, 2024
1 parent 740e00f commit 82695e0
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions apps/nextjs-app/src/app/auth/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 }) => {
Expand Down

0 comments on commit 82695e0

Please sign in to comment.