feat: convert docs to pdf logic with api endpoint and dockerfile dependency

This commit is contained in:
theoleuthardt 2025-02-13 01:08:03 +01:00
parent 4f119ca750
commit 40032dca69
6 changed files with 124 additions and 23 deletions

View file

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