chore: cleanup nextjs project
This commit is contained in:
@@ -1,9 +1,8 @@
|
||||
import './global.css';
|
||||
import { type Metadata } from 'next';
|
||||
import { description, title } from '../data/metadata.json';
|
||||
import '../styles/globals.css';
|
||||
|
||||
export const metadata = {
|
||||
title: 'Welcome to landing',
|
||||
description: 'Generated by create-nx-workspace',
|
||||
};
|
||||
export const metadata: Metadata = { title, description };
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -11,7 +10,7 @@ export default function RootLayout({
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<html lang="id" suppressHydrationWarning>
|
||||
<body>{children}</body>
|
||||
</html>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user