chore: cleanup nextjs project

This commit is contained in:
ArraysID
2025-04-26 21:13:19 +07:00
parent b389235971
commit 259262a1ef
10 changed files with 194 additions and 639 deletions
+5 -6
View File
@@ -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>
);