chore: add vercel analytics

This commit is contained in:
2025-05-31 00:37:59 +02:00
parent d54c6c2e8b
commit c990e11c43
3 changed files with 8 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
import './globals.css';
import type { Metadata } from 'next';
import { Analytics } from "@vercel/analytics/next"
export const metadata: Metadata = {
title: 'Markdown to PNG Converter',
@@ -14,6 +15,7 @@ export default function RootLayout({
return (
<html lang="en">
<body>{children}</body>
<Analytics/>
</html>
);
}