Fehler
This commit is contained in:
19
src/app/vcard/layout.tsx
Normal file
19
src/app/vcard/layout.tsx
Normal 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>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user