mirror of
https://github.com/arthur-pbty/visio.git
synced 2026-06-23 18:05:00 +02:00
feat: add settings page for user display name and implement local storage hook
feat: create SocketContext for managing socket connections feat: implement useLocalStorage hook for persistent state management feat: set up SQLite database with room management functions feat: add utility functions for generating room IDs and formatting dates
This commit is contained in:
+14
-4
@@ -13,8 +13,18 @@ const geistMono = Geist_Mono({
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Create Next App",
|
||||
description: "Generated by create next app",
|
||||
title: "Visio - Vidéoconférence Simple",
|
||||
description: "Créez et rejoignez des visioconférences gratuitement, sans inscription",
|
||||
keywords: ["visioconférence", "vidéo", "appel", "gratuit", "sans inscription"],
|
||||
authors: [{ name: "Arthur P" }],
|
||||
openGraph: {
|
||||
title: "Visio - Vidéoconférence Simple",
|
||||
description: "Créez et rejoignez des visioconférences gratuitement, sans inscription",
|
||||
url: "https://visio.arthurp.fr",
|
||||
siteName: "Visio",
|
||||
locale: "fr_FR",
|
||||
type: "website",
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -23,9 +33,9 @@ export default function RootLayout({
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<html lang="fr">
|
||||
<body
|
||||
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
|
||||
className={`${geistSans.variable} ${geistMono.variable} antialiased min-h-screen`}
|
||||
>
|
||||
{children}
|
||||
</body>
|
||||
|
||||
Reference in New Issue
Block a user