p2p poll logic added

This commit is contained in:
Hollajay
2026-03-19 10:52:12 +01:00
parent 68797053ac
commit 5415741940
14 changed files with 6947 additions and 73 deletions

View File

@@ -1,20 +1,12 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "p2p polling",
description: "creating a p2p-polling app",
};
export default function RootLayout({
@@ -25,7 +17,7 @@ export default function RootLayout({
return (
<html
lang="en"
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
className={` h-full antialiased`}
>
<body className="min-h-full flex flex-col">{children}</body>
</html>