This commit is contained in:
Timo Knuth 2026-01-13 16:35:02 +01:00
parent d585e5aed3
commit fb788d89d3
1 changed files with 19 additions and 0 deletions

19
src/app/vcard/layout.tsx Normal file
View File

@ -0,0 +1,19 @@
import '@/styles/globals.css';
export const metadata = {
title: 'vCard Download',
description: 'Download contact information',
};
export default function VCardLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}