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';
+7 -11
View File
@@ -1,23 +1,19 @@
import type { Metadata } from "next";
import "./globals.css";
import type { Metadata } from 'next';
import './globals.css';
export const metadata: Metadata = {
title: "⛧",
description: "",
title: '⛧',
description: ''
};
export default function RootLayout({
children,
children
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
className={`antialiased`}
>
{children}
</body>
<html lang='en'>
<body className={`antialiased`}>{children}</body>
</html>
);
}