aboutsummaryrefslogtreecommitdiff
path: root/src/app/layout.js
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-03-17 07:08:55 +0530
committerreal-zephex <[email protected]>2024-03-17 07:08:55 +0530
commitbc2963f9e76a4000e3f1747b6fa4affdebba3956 (patch)
tree39fa19bbe792b3b90b526ef5460545c76bca3dcf /src/app/layout.js
parentminor fixes and feature improvements: added an indicator which shows when the... (diff)
downloaddramalama-bc2963f9e76a4000e3f1747b6fa4affdebba3956.tar.xz
dramalama-bc2963f9e76a4000e3f1747b6fa4affdebba3956.zip
prettified the code :)
Diffstat (limited to 'src/app/layout.js')
-rw-r--r--src/app/layout.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/app/layout.js b/src/app/layout.js
index d6dd022..3c36ca3 100644
--- a/src/app/layout.js
+++ b/src/app/layout.js
@@ -5,14 +5,14 @@ import Header from "./header/header";
const inter = Inter({ subsets: ["latin"] });
export const metadata = {
- title: "Dramalama-Next",
+ title: "Dramalama V2.0",
description: "Rewrite of dramalama in next",
};
export default function RootLayout({ children }) {
- return (
+ return (
<html lang="en">
- <body className={inter.className}>
+ <body className={inter.className}>
<Header />
{children}
</body>