New booking panel

This commit is contained in:
Jose Selesan
2026-05-05 10:16:38 -03:00
parent 546a020003
commit c089215835
19 changed files with 1991 additions and 1072 deletions

View File

@@ -1,8 +1,8 @@
import type { ReactNode } from "react"
import { Header } from "./header"
import type { ReactNode } from 'react';
import { Header } from './header';
interface LayoutProps {
children: ReactNode
children: ReactNode;
}
export function Layout({ children }: LayoutProps) {
@@ -14,7 +14,7 @@ export function Layout({ children }: LayoutProps) {
{children}
</main>
</div>
)
);
}
function Background() {
@@ -30,5 +30,5 @@ function Background() {
<div className="absolute inset-0 bg-[radial-gradient(circle_at_center,transparent_0%,#09131c_78%)]" />
</div>
)
}
);
}