@suryasairus/core 1.1.12 → 1.1.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/app/layout.tsx +13 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@suryasairus/core",
3
- "version": "1.1.12",
3
+ "version": "1.1.13",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,15 +1,23 @@
1
- import "./globals.css"; // Keep this if you have CSS
1
+ import type { Metadata } from "next";
2
+ import "./globals.css";
3
+
4
+ export const metadata: Metadata = {
5
+ title: "Create Next App",
6
+ description: "Generated by create next app",
7
+ };
2
8
 
3
9
  export default function RootLayout({
4
10
  children,
5
- }: {
11
+ }: Readonly<{
6
12
  children: React.ReactNode;
7
- }) {
13
+ }>) {
8
14
  return (
9
15
  <html lang="en">
10
- <body style={{ fontFamily: 'system-ui, sans-serif' }}>
16
+ <body
17
+ className={`antialiased`}
18
+ >
11
19
  {children}
12
20
  </body>
13
21
  </html>
14
22
  );
15
- }
23
+ }