mirror of
https://github.com/arthur-pbty/links.git
synced 2026-08-01 20:29:27 +02:00
15 lines
312 B
JavaScript
15 lines
312 B
JavaScript
import './globals.css';
|
|
|
|
export const metadata = {
|
|
title: 'Mes Liens - Arthur',
|
|
description: 'Tous mes liens sociaux et projets au même endroit.'
|
|
};
|
|
|
|
export default function RootLayout({ children }) {
|
|
return (
|
|
<html lang="fr" suppressHydrationWarning>
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|