diff --git a/src/app/vcard/layout.tsx b/src/app/vcard/layout.tsx new file mode 100644 index 0000000..fcfdaf8 --- /dev/null +++ b/src/app/vcard/layout.tsx @@ -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 ( + + {children} + + ); +}