All checks were successful
Deploy / lint-build-deploy (push) Successful in 2m19s
26 lines
555 B
TypeScript
26 lines
555 B
TypeScript
import './globals.css';
|
|
import type { Metadata } from 'next';
|
|
import Script from 'next/script';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Markdown to PNG Converter',
|
|
description: 'Convert Markdown files to PNG images',
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body>{children}</body>
|
|
<Script
|
|
defer
|
|
src="https://analytics.frompixels.com/script.js"
|
|
data-website-id="7e7f3132-9944-4070-bc4f-9f5722ab081a"
|
|
/>
|
|
</html>
|
|
);
|
|
}
|