Fehler
This commit is contained in:
parent
d585e5aed3
commit
fb788d89d3
|
|
@ -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>
|
||||||
|
);
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue