style: run prettier

This commit is contained in:
2025-12-28 21:49:56 -03:00
parent 49188402f6
commit 55cf35e3a1
2 changed files with 12 additions and 17 deletions
+1 -2
View File
@@ -1,2 +1 @@
@import "tailwindcss"; @import 'tailwindcss';
+11 -15
View File
@@ -1,23 +1,19 @@
import type { Metadata } from "next"; import type { Metadata } from 'next';
import "./globals.css"; import './globals.css';
export const metadata: Metadata = { export const metadata: Metadata = {
title: "⛧", title: '⛧',
description: "", description: ''
}; };
export default function RootLayout({ export default function RootLayout({
children, children
}: Readonly<{ }: Readonly<{
children: React.ReactNode; children: React.ReactNode;
}>) { }>) {
return ( return (
<html lang="en"> <html lang='en'>
<body <body className={`antialiased`}>{children}</body>
className={`antialiased`} </html>
> );
{children}
</body>
</html>
);
} }