This commit is contained in:
2026-05-12 17:35:38 +03:00
parent d9ffcb4b92
commit e3f3e62482
51 changed files with 882 additions and 3413 deletions
+9 -9
View File
@@ -1,14 +1,14 @@
import '@/app/ui/global.css';
import { inter } from '@/app/ui/fonts';
import { Metadata } from 'next';
import "@/app/ui/global.css";
import type { Metadata } from "next";
import { inter } from "@/app/ui/fonts";
export const metadata: Metadata = {
title: {
template: '%s | Acme Dashboard',
default: 'Acme Dashboard',
template: "%s | Acme Dashboard",
default: "Acme Dashboard",
},
description: 'The official Next.js Learn Dashboard built with App Router.',
metadataBase: new URL('https://next-learn-dashboard.vercel.sh'),
description: "The official Next.js Learn Dashboard built with App Router.",
metadataBase: new URL("https://next-learn-dashboard.vercel.sh"),
};
export default function RootLayout({
@@ -21,4 +21,4 @@ export default function RootLayout({
<body className={`${inter.className} antialiased`}>{children}</body>
</html>
);
}
}