feat: new tool names and folder renaming

This commit is contained in:
theoleuthardt 2025-02-14 15:14:37 +01:00
parent 9733de9a39
commit 41cf6c9e49
3 changed files with 6 additions and 6 deletions

View file

@ -1,18 +0,0 @@
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "doc-to-pdf",
description: "Converter for documents to pdf format!",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className={`antialiased`}>{children}</body>
</html>
);
}