+ );
+}
diff --git a/src/components/layout/navbar.tsx b/src/components/layout/navbar.tsx
index 2e020da..93c4549 100644
--- a/src/components/layout/navbar.tsx
+++ b/src/components/layout/navbar.tsx
@@ -1,6 +1,7 @@
import { UserNav } from "./user-nav";
import Image from "next/image";
import logo from "@/assets/logo.png";
+import { Switch } from "@/components/ui/switch";
export const Navbar = () => {
return (
@@ -12,7 +13,7 @@ export const Navbar = () => {
alt="Logo"
layout="fill" // required
objectFit="cover" // change as you like
- className="rounded-full" // you can use other classes here too
+ className="rounded-full object-cover" // you can use other classes here too
/>
- handleStageSizeSelect(350, 400)}>
+ handleStageSizeSelect(269.32, 165.87)}>
Petit Format
- handleStageSizeSelect(500, 500)}>
+ handleStageSizeSelect(323.15, 227)}>
Moyen Format
- handleStageSizeSelect(800, 600)}>
+ handleStageSizeSelect(410, 289)}>
Grand Format
diff --git a/src/components/legales.tsx b/src/components/legales.tsx
new file mode 100644
index 0000000..a6233b4
--- /dev/null
+++ b/src/components/legales.tsx
@@ -0,0 +1,20 @@
+import React from "react";
+import { Image, Layer } from "react-konva";
+import women from "../assets/logo.png";
+import useImage from "use-image";
+
+export default function Legales() {
+ const [test] = useImage(women);
+ return (
+
+
+
+ );
+}
diff --git a/src/components/ui/scroll-area.tsx b/src/components/ui/scroll-area.tsx
new file mode 100644
index 0000000..ffc5a82
--- /dev/null
+++ b/src/components/ui/scroll-area.tsx
@@ -0,0 +1,46 @@
+import * as React from "react";
+import * as ScrollAreaPrimitive from "@radix-ui/react-scroll-area";
+
+import { cn } from "@/lib/utils";
+
+const ScrollArea = React.forwardRef<
+ React.ElementRef,
+ React.ComponentPropsWithoutRef
+>(({ className, children, ...props }, ref) => (
+
+
+ {children}
+
+
+
+
+));
+ScrollArea.displayName = ScrollAreaPrimitive.Root.displayName;
+
+const ScrollBar = React.forwardRef<
+ React.ElementRef,
+ React.ComponentPropsWithoutRef
+>(({ className, orientation = "vertical", ...props }, ref) => (
+
+
+
+));
+ScrollBar.displayName = ScrollAreaPrimitive.ScrollAreaScrollbar.displayName;
+
+export { ScrollArea, ScrollBar };
diff --git a/src/components/ui/switch.tsx b/src/components/ui/switch.tsx
new file mode 100644
index 0000000..aa58baa
--- /dev/null
+++ b/src/components/ui/switch.tsx
@@ -0,0 +1,27 @@
+import * as React from "react"
+import * as SwitchPrimitives from "@radix-ui/react-switch"
+
+import { cn } from "@/lib/utils"
+
+const Switch = React.forwardRef<
+ React.ElementRef,
+ React.ComponentPropsWithoutRef
+>(({ className, ...props }, ref) => (
+
+
+
+))
+Switch.displayName = SwitchPrimitives.Root.displayName
+
+export { Switch }
diff --git a/src/components/ui/table.tsx b/src/components/ui/table.tsx
new file mode 100644
index 0000000..7f3502f
--- /dev/null
+++ b/src/components/ui/table.tsx
@@ -0,0 +1,117 @@
+import * as React from "react"
+
+import { cn } from "@/lib/utils"
+
+const Table = React.forwardRef<
+ HTMLTableElement,
+ React.HTMLAttributes
+>(({ className, ...props }, ref) => (
+