started work on availability-color-selector

This commit is contained in:
z1glr
2025-01-17 21:58:17 +00:00
parent a3c6fd685d
commit e37310b774
22 changed files with 9961 additions and 9155 deletions

View File

@@ -1,6 +1,6 @@
import type { Metadata } from "next";
import "./globals.css";
import { NextUIProvider } from "@nextui-org/system";
import { HeroUIProvider } from "@heroui/system";
import React from "react";
import Footer from "./Footer";
import Header from "./Header";
@@ -57,7 +57,7 @@ export default function RootLayout({
return (
<html>
<body className="bg-background text-foreground antialiased">
<NextUIProvider>
<HeroUIProvider>
<div className="flex min-h-screen flex-col p-4">
<header>
<Header sites={headerSites} />
@@ -69,7 +69,7 @@ export default function RootLayout({
<Footer sites={footerSites} />
</footer>
</div>
</NextUIProvider>
</HeroUIProvider>
</body>
</html>
);