diff --git a/custom-components/app/globals.css b/custom-components/app/globals.css
new file mode 100644
index 000000000..15b921b61
--- /dev/null
+++ b/custom-components/app/globals.css
@@ -0,0 +1,158 @@
+@import "tailwindcss";
+@import "tw-animate-css";
+
+@custom-variant dark (&:is(.dark *));
+
+/* Added United Tattoo design system colors and tokens */
+:root {
+ /* United Tattoo Palette - Primary */
+ --burnt-orange: #e67e50;
+ --terracotta: #d87850;
+ --burnt: #b0471e;
+
+ /* United Tattoo Palette - Secondary */
+ --sage-concrete: #7a8b8b;
+ --sage: #a28f79;
+ --deep-olive: #4a4034;
+ --moss: #6f5c49;
+
+ /* United Tattoo Palette - Neutral */
+ --charcoal: #1c1915;
+ --ink: #241b16;
+ --cream: #fff7ec;
+ --sand: #f2e3d0;
+ --rose: #e59863;
+
+ /* Shadows */
+ --shadow-subtle: 0 4px 12px rgba(31, 27, 23, 0.08);
+ --shadow-md: 0 12px 28px rgba(31, 27, 23, 0.1);
+ --shadow-lg: 0 20px 40px rgba(36, 27, 22, 0.15);
+ --shadow-bloom: 0 32px 60px rgba(31, 27, 23, 0.2);
+ --shadow-filmic: 0 40px 70px rgba(31, 27, 23, 0.25);
+
+ --background: var(--sand);
+ --foreground: var(--ink);
+ --card: var(--cream);
+ --card-foreground: var(--ink);
+ --popover: var(--cream);
+ --popover-foreground: var(--ink);
+ --primary: var(--burnt);
+ --primary-foreground: #ffffff;
+ --secondary: var(--terracotta);
+ --secondary-foreground: #ffffff;
+ --muted: var(--sage-concrete);
+ --muted-foreground: var(--moss);
+ --accent: var(--burnt-orange);
+ --accent-foreground: #ffffff;
+ --destructive: oklch(0.577 0.245 27.325);
+ --destructive-foreground: oklch(0.577 0.245 27.325);
+ --border: rgba(31, 27, 23, 0.12);
+ --input: rgba(210, 106, 50, 0.25);
+ --ring: var(--terracotta);
+ --chart-1: oklch(0.646 0.222 41.116);
+ --chart-2: oklch(0.6 0.118 184.704);
+ --chart-3: oklch(0.398 0.07 227.392);
+ --chart-4: oklch(0.828 0.189 84.429);
+ --chart-5: oklch(0.769 0.188 70.08);
+ --radius: 0.75rem;
+ --sidebar: var(--cream);
+ --sidebar-foreground: var(--ink);
+ --sidebar-primary: var(--burnt);
+ --sidebar-primary-foreground: #ffffff;
+ --sidebar-accent: var(--sand);
+ --sidebar-accent-foreground: var(--ink);
+ --sidebar-border: rgba(31, 27, 23, 0.12);
+ --sidebar-ring: var(--terracotta);
+}
+
+@theme inline {
+ --font-sans: "Space Grotesk", "Space Grotesk Fallback", system-ui, sans-serif;
+ --font-serif: "Playfair Display", "Playfair Display Fallback", Georgia, serif;
+ --font-mono: "Geist Mono", "Geist Mono Fallback";
+ --color-background: var(--background);
+ --color-foreground: var(--foreground);
+ --color-card: var(--card);
+ --color-card-foreground: var(--card-foreground);
+ --color-popover: var(--popover);
+ --color-popover-foreground: var(--popover-foreground);
+ --color-primary: var(--primary);
+ --color-primary-foreground: var(--primary-foreground);
+ --color-secondary: var(--secondary);
+ --color-secondary-foreground: var(--secondary-foreground);
+ --color-muted: var(--muted);
+ --color-muted-foreground: var(--muted-foreground);
+ --color-accent: var(--accent);
+ --color-accent-foreground: var(--accent-foreground);
+ --color-destructive: var(--destructive);
+ --color-destructive-foreground: var(--destructive-foreground);
+ --color-border: var(--border);
+ --color-input: var(--input);
+ --color-ring: var(--ring);
+ --color-chart-1: var(--chart-1);
+ --color-chart-2: var(--chart-2);
+ --color-chart-3: var(--chart-3);
+ --color-chart-4: var(--chart-4);
+ --color-chart-5: var(--chart-5);
+ --radius-sm: calc(var(--radius) - 4px);
+ --radius-md: calc(var(--radius) - 2px);
+ --radius-lg: var(--radius);
+ --radius-xl: calc(var(--radius) + 4px);
+ --color-sidebar: var(--sidebar);
+ --color-sidebar-foreground: var(--sidebar-foreground);
+ --color-sidebar-primary: var(--sidebar-primary);
+ --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
+ --color-sidebar-accent: var(--sidebar-accent);
+ --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
+ --color-sidebar-border: var(--sidebar-border);
+ --color-sidebar-ring: var(--sidebar-ring);
+
+ /* United Tattoo specific colors for direct usage */
+ --color-burnt-orange: var(--burnt-orange);
+ --color-terracotta: var(--terracotta);
+ --color-burnt: var(--burnt);
+ --color-sage-concrete: var(--sage-concrete);
+ --color-sage: var(--sage);
+ --color-deep-olive: var(--deep-olive);
+ --color-moss: var(--moss);
+ --color-charcoal: var(--charcoal);
+ --color-ink: var(--ink);
+ --color-cream: var(--cream);
+ --color-sand: var(--sand);
+ --color-rose: var(--rose);
+}
+
+@layer base {
+ * {
+ @apply border-border outline-ring/50;
+ }
+ body {
+ @apply text-foreground;
+ /* United Tattoo layered background */
+ background: linear-gradient(180deg, var(--sage-concrete) 0%, #9caaa6 45%, var(--sand) 100%);
+ min-height: 100vh;
+ }
+
+ /* Texture Layer: Radial overlays */
+ body::before {
+ content: "";
+ position: fixed;
+ inset: 0;
+ background: radial-gradient(circle at 15% 20%, rgba(216, 120, 80, 0.15), transparent 45%),
+ radial-gradient(circle at 85% 5%, rgba(36, 27, 22, 0.08), transparent 55%);
+ opacity: 0.8;
+ z-index: -2;
+ pointer-events: none;
+ }
+
+ /* Texture Layer: Grid pattern */
+ body::after {
+ content: "";
+ position: fixed;
+ inset: 0;
+ background-image: url('data:image/svg+xml;charset=UTF-8,');
+ mix-blend-mode: multiply;
+ opacity: 1;
+ z-index: -1;
+ pointer-events: none;
+ }
+}
diff --git a/custom-components/app/layout.tsx b/custom-components/app/layout.tsx
new file mode 100644
index 000000000..e3f8e41e9
--- /dev/null
+++ b/custom-components/app/layout.tsx
@@ -0,0 +1,53 @@
+import type React from "react"
+import type { Metadata } from "next"
+import { Space_Grotesk, Playfair_Display } from "next/font/google"
+import { Analytics } from "@vercel/analytics/next"
+import "./globals.css"
+
+const spaceGrotesk = Space_Grotesk({
+ subsets: ["latin"],
+ variable: "--font-sans",
+})
+
+const playfairDisplay = Playfair_Display({
+ subsets: ["latin"],
+ variable: "--font-serif",
+})
+
+export const metadata: Metadata = {
+ title: "United Tattoo Component Library",
+ description: "A living design system with sun-washed plaster aesthetics and gallery pacing principles",
+ generator: "v0.app",
+ icons: {
+ icon: [
+ {
+ url: "/icon-light-32x32.png",
+ media: "(prefers-color-scheme: light)",
+ },
+ {
+ url: "/icon-dark-32x32.png",
+ media: "(prefers-color-scheme: dark)",
+ },
+ {
+ url: "/icon.svg",
+ type: "image/svg+xml",
+ },
+ ],
+ apple: "/apple-icon.png",
+ },
+}
+
+export default function RootLayout({
+ children,
+}: Readonly<{
+ children: React.ReactNode
+}>) {
+ return (
+
+
+ {children}
+
+
+
+ )
+}
diff --git a/custom-components/app/page.tsx b/custom-components/app/page.tsx
new file mode 100644
index 000000000..0c7ce12b5
--- /dev/null
+++ b/custom-components/app/page.tsx
@@ -0,0 +1,266 @@
+import { Button } from "@/components/united/button"
+import { Card, CardHeader, CardTitle, CardContent } from "@/components/united/card"
+import { Toast } from "@/components/united/toast"
+import { FormContainer } from "@/components/united/form-container"
+import { FormField, Input, Textarea } from "@/components/united/form-field"
+import { Calendar } from "@/components/united/calendar"
+import { ColorSwatch } from "@/components/united/color-swatch"
+import { SectionLabel } from "@/components/united/section-label"
+import { Heading } from "@/components/united/heading"
+import { LeadText } from "@/components/united/lead-text"
+import { HeroOverlay } from "@/components/united/hero-overlay"
+import { AnimatedLink } from "@/components/united/animated-link"
+import { LiftCard } from "@/components/united/lift-card"
+import { MotionCard } from "@/components/united/motion-card"
+import { GalleryCard } from "@/components/united/gallery-card"
+import { StickySplit } from "@/components/united/sticky-split"
+import { Divider } from "@/components/united/divider"
+import { Filmstrip } from "@/components/united/filmstrip"
+import { Reveal } from "@/components/united/reveal"
+import { Metadata } from "@/components/united/metadata"
+
+export default function ComponentLibrary() {
+ const calendarDays = [
+ { day: 10, isBooked: true },
+ { day: 11 },
+ { day: 12 },
+ { day: 13 },
+ { day: 14, isBooked: true },
+ { day: 15 },
+ { day: 16 },
+ ]
+
+ const filmstripItems = [
+ { src: "/monument-statue-with-colorful-objects-artistic.jpg", label: "Monument Prep" },
+ { src: "/statue-of-liberty-watercolor-painting-pastel.jpg", label: "Avian Story" },
+ { src: "/artistic-studio-with-paintbrushes-and-statue.jpg", label: "Architectural Study" },
+ ]
+
+ return (
+
+ {/* Hero Section */}
+
+
+
+ United Tattoo
+ Design Language Reference
+
+ A living style guide documenting color, typography, components, and interaction patterns.
+
+
+
+
+
+ {/* Filmstrip Gallery */}
+
+
+ {/* Brand Identity Section */}
+
+
+ Brand Identity
+ Color, typography, and materiality echo sun-washed plaster.
+
+ Think plaster walls catching a diagonal slice of afternoon light—burnt oranges, desaturated greens, and
+ charcoal blacks. Typography feels like museum placards.
+
+
+ }
+ >
+
+
+
+
+ Color Language
+ Ratio — 60 / 25 / 15
+
+
+
+ Primary palette blends burnt oranges with sage concrete.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Typography
+
+
+
+
Display / Headlines
+
+ Playfair Display
+
+ Sculptural Statements
+
+
+
+
Body / Interface
+
+ Space Grotesk. Used for body copy and interface elements. Quiet, generous tracking, always
+ legible on textured backgrounds.
+
+
+
+
+
+
+
+
+
+
+
+
+ {/* Interface Components Section */}
+
+
+ Interface Components
+ Micro-interactions that feel tactile.
+
+
+
+
+
+
+ Action Hierarchy
+
+
+
+
+
+
+
+
+ Toast States
+
+
+
+
+
+
+
+
+
+
+ Booking Request
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {/* Layout & Pacing Section */}
+
+
+ Layout & Pacing
+ Structure mirrors gallery pacing: spacious, staggered, editorial.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {/* Motion Principles Section */}
+
+
+ Motion Principles
+ Every movement should feel deliberate, like brush strokes.
+
+
+
+
+
+ }
+ >
+
+
+ Interaction Demo
+
+ Hover the elements below to see the "Shadow Bloom" and "Scale" effects.
+
+
+
+
+
Link Underline Draw
+
Visit the Studio
+
+
+
+
Card Lift
+
+ Hover Me
+ Simulates lifting an object off the table.
+
+
+
+
+
+
+
+
+ {/* Footer */}
+
+
+ )
+}
diff --git a/custom-components/components.json b/custom-components/components.json
new file mode 100644
index 000000000..4ee62ee10
--- /dev/null
+++ b/custom-components/components.json
@@ -0,0 +1,21 @@
+{
+ "$schema": "https://ui.shadcn.com/schema.json",
+ "style": "new-york",
+ "rsc": true,
+ "tsx": true,
+ "tailwind": {
+ "config": "",
+ "css": "app/globals.css",
+ "baseColor": "neutral",
+ "cssVariables": true,
+ "prefix": ""
+ },
+ "aliases": {
+ "components": "@/components",
+ "utils": "@/lib/utils",
+ "ui": "@/components/ui",
+ "lib": "@/lib",
+ "hooks": "@/hooks"
+ },
+ "iconLibrary": "lucide"
+}
diff --git a/custom-components/components/theme-provider.tsx b/custom-components/components/theme-provider.tsx
new file mode 100644
index 000000000..55c2f6eb6
--- /dev/null
+++ b/custom-components/components/theme-provider.tsx
@@ -0,0 +1,11 @@
+'use client'
+
+import * as React from 'react'
+import {
+ ThemeProvider as NextThemesProvider,
+ type ThemeProviderProps,
+} from 'next-themes'
+
+export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
+ return {children}
+}
diff --git a/custom-components/components/ui/accordion.tsx b/custom-components/components/ui/accordion.tsx
new file mode 100644
index 000000000..e538a33b9
--- /dev/null
+++ b/custom-components/components/ui/accordion.tsx
@@ -0,0 +1,66 @@
+'use client'
+
+import * as React from 'react'
+import * as AccordionPrimitive from '@radix-ui/react-accordion'
+import { ChevronDownIcon } from 'lucide-react'
+
+import { cn } from '@/lib/utils'
+
+function Accordion({
+ ...props
+}: React.ComponentProps) {
+ return
+}
+
+function AccordionItem({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function AccordionTrigger({
+ className,
+ children,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ svg]:rotate-180',
+ className,
+ )}
+ {...props}
+ >
+ {children}
+
+
+
+ )
+}
+
+function AccordionContent({
+ className,
+ children,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ {children}
+
+ )
+}
+
+export { Accordion, AccordionItem, AccordionTrigger, AccordionContent }
diff --git a/custom-components/components/ui/alert-dialog.tsx b/custom-components/components/ui/alert-dialog.tsx
new file mode 100644
index 000000000..970445266
--- /dev/null
+++ b/custom-components/components/ui/alert-dialog.tsx
@@ -0,0 +1,157 @@
+'use client'
+
+import * as React from 'react'
+import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog'
+
+import { cn } from '@/lib/utils'
+import { buttonVariants } from '@/components/ui/button'
+
+function AlertDialog({
+ ...props
+}: React.ComponentProps) {
+ return
+}
+
+function AlertDialogTrigger({
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function AlertDialogPortal({
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function AlertDialogOverlay({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function AlertDialogContent({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+
+
+
+ )
+}
+
+function AlertDialogHeader({
+ className,
+ ...props
+}: React.ComponentProps<'div'>) {
+ return (
+
+ )
+}
+
+function AlertDialogFooter({
+ className,
+ ...props
+}: React.ComponentProps<'div'>) {
+ return (
+
+ )
+}
+
+function AlertDialogTitle({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function AlertDialogDescription({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function AlertDialogAction({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function AlertDialogCancel({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+export {
+ AlertDialog,
+ AlertDialogPortal,
+ AlertDialogOverlay,
+ AlertDialogTrigger,
+ AlertDialogContent,
+ AlertDialogHeader,
+ AlertDialogFooter,
+ AlertDialogTitle,
+ AlertDialogDescription,
+ AlertDialogAction,
+ AlertDialogCancel,
+}
diff --git a/custom-components/components/ui/alert.tsx b/custom-components/components/ui/alert.tsx
new file mode 100644
index 000000000..e6751abe6
--- /dev/null
+++ b/custom-components/components/ui/alert.tsx
@@ -0,0 +1,66 @@
+import * as React from 'react'
+import { cva, type VariantProps } from 'class-variance-authority'
+
+import { cn } from '@/lib/utils'
+
+const alertVariants = cva(
+ 'relative w-full rounded-lg border px-4 py-3 text-sm grid has-[>svg]:grid-cols-[calc(var(--spacing)*4)_1fr] grid-cols-[0_1fr] has-[>svg]:gap-x-3 gap-y-0.5 items-start [&>svg]:size-4 [&>svg]:translate-y-0.5 [&>svg]:text-current',
+ {
+ variants: {
+ variant: {
+ default: 'bg-card text-card-foreground',
+ destructive:
+ 'text-destructive bg-card [&>svg]:text-current *:data-[slot=alert-description]:text-destructive/90',
+ },
+ },
+ defaultVariants: {
+ variant: 'default',
+ },
+ },
+)
+
+function Alert({
+ className,
+ variant,
+ ...props
+}: React.ComponentProps<'div'> & VariantProps) {
+ return (
+
+ )
+}
+
+function AlertTitle({ className, ...props }: React.ComponentProps<'div'>) {
+ return (
+
+ )
+}
+
+function AlertDescription({
+ className,
+ ...props
+}: React.ComponentProps<'div'>) {
+ return (
+
+ )
+}
+
+export { Alert, AlertTitle, AlertDescription }
diff --git a/custom-components/components/ui/aspect-ratio.tsx b/custom-components/components/ui/aspect-ratio.tsx
new file mode 100644
index 000000000..40bb1208d
--- /dev/null
+++ b/custom-components/components/ui/aspect-ratio.tsx
@@ -0,0 +1,11 @@
+'use client'
+
+import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio'
+
+function AspectRatio({
+ ...props
+}: React.ComponentProps) {
+ return
+}
+
+export { AspectRatio }
diff --git a/custom-components/components/ui/avatar.tsx b/custom-components/components/ui/avatar.tsx
new file mode 100644
index 000000000..aa98465a3
--- /dev/null
+++ b/custom-components/components/ui/avatar.tsx
@@ -0,0 +1,53 @@
+'use client'
+
+import * as React from 'react'
+import * as AvatarPrimitive from '@radix-ui/react-avatar'
+
+import { cn } from '@/lib/utils'
+
+function Avatar({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function AvatarImage({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function AvatarFallback({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+export { Avatar, AvatarImage, AvatarFallback }
diff --git a/custom-components/components/ui/badge.tsx b/custom-components/components/ui/badge.tsx
new file mode 100644
index 000000000..fc4126b7a
--- /dev/null
+++ b/custom-components/components/ui/badge.tsx
@@ -0,0 +1,46 @@
+import * as React from 'react'
+import { Slot } from '@radix-ui/react-slot'
+import { cva, type VariantProps } from 'class-variance-authority'
+
+import { cn } from '@/lib/utils'
+
+const badgeVariants = cva(
+ 'inline-flex items-center justify-center rounded-md border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden',
+ {
+ variants: {
+ variant: {
+ default:
+ 'border-transparent bg-primary text-primary-foreground [a&]:hover:bg-primary/90',
+ secondary:
+ 'border-transparent bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90',
+ destructive:
+ 'border-transparent bg-destructive text-white [a&]:hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60',
+ outline:
+ 'text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground',
+ },
+ },
+ defaultVariants: {
+ variant: 'default',
+ },
+ },
+)
+
+function Badge({
+ className,
+ variant,
+ asChild = false,
+ ...props
+}: React.ComponentProps<'span'> &
+ VariantProps & { asChild?: boolean }) {
+ const Comp = asChild ? Slot : 'span'
+
+ return (
+
+ )
+}
+
+export { Badge, badgeVariants }
diff --git a/custom-components/components/ui/breadcrumb.tsx b/custom-components/components/ui/breadcrumb.tsx
new file mode 100644
index 000000000..1750ff26a
--- /dev/null
+++ b/custom-components/components/ui/breadcrumb.tsx
@@ -0,0 +1,109 @@
+import * as React from 'react'
+import { Slot } from '@radix-ui/react-slot'
+import { ChevronRight, MoreHorizontal } from 'lucide-react'
+
+import { cn } from '@/lib/utils'
+
+function Breadcrumb({ ...props }: React.ComponentProps<'nav'>) {
+ return
+}
+
+function BreadcrumbList({ className, ...props }: React.ComponentProps<'ol'>) {
+ return (
+
+ )
+}
+
+function BreadcrumbItem({ className, ...props }: React.ComponentProps<'li'>) {
+ return (
+
+ )
+}
+
+function BreadcrumbLink({
+ asChild,
+ className,
+ ...props
+}: React.ComponentProps<'a'> & {
+ asChild?: boolean
+}) {
+ const Comp = asChild ? Slot : 'a'
+
+ return (
+
+ )
+}
+
+function BreadcrumbPage({ className, ...props }: React.ComponentProps<'span'>) {
+ return (
+
+ )
+}
+
+function BreadcrumbSeparator({
+ children,
+ className,
+ ...props
+}: React.ComponentProps<'li'>) {
+ return (
+ svg]:size-3.5', className)}
+ {...props}
+ >
+ {children ?? }
+
+ )
+}
+
+function BreadcrumbEllipsis({
+ className,
+ ...props
+}: React.ComponentProps<'span'>) {
+ return (
+
+
+ More
+
+ )
+}
+
+export {
+ Breadcrumb,
+ BreadcrumbList,
+ BreadcrumbItem,
+ BreadcrumbLink,
+ BreadcrumbPage,
+ BreadcrumbSeparator,
+ BreadcrumbEllipsis,
+}
diff --git a/custom-components/components/ui/button-group.tsx b/custom-components/components/ui/button-group.tsx
new file mode 100644
index 000000000..09d443097
--- /dev/null
+++ b/custom-components/components/ui/button-group.tsx
@@ -0,0 +1,83 @@
+import { Slot } from '@radix-ui/react-slot'
+import { cva, type VariantProps } from 'class-variance-authority'
+
+import { cn } from '@/lib/utils'
+import { Separator } from '@/components/ui/separator'
+
+const buttonGroupVariants = cva(
+ "flex w-fit items-stretch [&>*]:focus-visible:z-10 [&>*]:focus-visible:relative [&>[data-slot=select-trigger]:not([class*='w-'])]:w-fit [&>input]:flex-1 has-[select[aria-hidden=true]:last-child]:[&>[data-slot=select-trigger]:last-of-type]:rounded-r-md has-[>[data-slot=button-group]]:gap-2",
+ {
+ variants: {
+ orientation: {
+ horizontal:
+ '[&>*:not(:first-child)]:rounded-l-none [&>*:not(:first-child)]:border-l-0 [&>*:not(:last-child)]:rounded-r-none',
+ vertical:
+ 'flex-col [&>*:not(:first-child)]:rounded-t-none [&>*:not(:first-child)]:border-t-0 [&>*:not(:last-child)]:rounded-b-none',
+ },
+ },
+ defaultVariants: {
+ orientation: 'horizontal',
+ },
+ },
+)
+
+function ButtonGroup({
+ className,
+ orientation,
+ ...props
+}: React.ComponentProps<'div'> & VariantProps) {
+ return (
+
+ )
+}
+
+function ButtonGroupText({
+ className,
+ asChild = false,
+ ...props
+}: React.ComponentProps<'div'> & {
+ asChild?: boolean
+}) {
+ const Comp = asChild ? Slot : 'div'
+
+ return (
+
+ )
+}
+
+function ButtonGroupSeparator({
+ className,
+ orientation = 'vertical',
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+export {
+ ButtonGroup,
+ ButtonGroupSeparator,
+ ButtonGroupText,
+ buttonGroupVariants,
+}
diff --git a/custom-components/components/ui/button.tsx b/custom-components/components/ui/button.tsx
new file mode 100644
index 000000000..f64632d15
--- /dev/null
+++ b/custom-components/components/ui/button.tsx
@@ -0,0 +1,60 @@
+import * as React from 'react'
+import { Slot } from '@radix-ui/react-slot'
+import { cva, type VariantProps } from 'class-variance-authority'
+
+import { cn } from '@/lib/utils'
+
+const buttonVariants = cva(
+ "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive",
+ {
+ variants: {
+ variant: {
+ default: 'bg-primary text-primary-foreground hover:bg-primary/90',
+ destructive:
+ 'bg-destructive text-white hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60',
+ outline:
+ 'border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50',
+ secondary:
+ 'bg-secondary text-secondary-foreground hover:bg-secondary/80',
+ ghost:
+ 'hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50',
+ link: 'text-primary underline-offset-4 hover:underline',
+ },
+ size: {
+ default: 'h-9 px-4 py-2 has-[>svg]:px-3',
+ sm: 'h-8 rounded-md gap-1.5 px-3 has-[>svg]:px-2.5',
+ lg: 'h-10 rounded-md px-6 has-[>svg]:px-4',
+ icon: 'size-9',
+ 'icon-sm': 'size-8',
+ 'icon-lg': 'size-10',
+ },
+ },
+ defaultVariants: {
+ variant: 'default',
+ size: 'default',
+ },
+ },
+)
+
+function Button({
+ className,
+ variant,
+ size,
+ asChild = false,
+ ...props
+}: React.ComponentProps<'button'> &
+ VariantProps & {
+ asChild?: boolean
+ }) {
+ const Comp = asChild ? Slot : 'button'
+
+ return (
+
+ )
+}
+
+export { Button, buttonVariants }
diff --git a/custom-components/components/ui/calendar.tsx b/custom-components/components/ui/calendar.tsx
new file mode 100644
index 000000000..eaa373e25
--- /dev/null
+++ b/custom-components/components/ui/calendar.tsx
@@ -0,0 +1,213 @@
+'use client'
+
+import * as React from 'react'
+import {
+ ChevronDownIcon,
+ ChevronLeftIcon,
+ ChevronRightIcon,
+} from 'lucide-react'
+import { DayButton, DayPicker, getDefaultClassNames } from 'react-day-picker'
+
+import { cn } from '@/lib/utils'
+import { Button, buttonVariants } from '@/components/ui/button'
+
+function Calendar({
+ className,
+ classNames,
+ showOutsideDays = true,
+ captionLayout = 'label',
+ buttonVariant = 'ghost',
+ formatters,
+ components,
+ ...props
+}: React.ComponentProps & {
+ buttonVariant?: React.ComponentProps['variant']
+}) {
+ const defaultClassNames = getDefaultClassNames()
+
+ return (
+ svg]:rotate-180`,
+ String.raw`rtl:**:[.rdp-button\_previous>svg]:rotate-180`,
+ className,
+ )}
+ captionLayout={captionLayout}
+ formatters={{
+ formatMonthDropdown: (date) =>
+ date.toLocaleString('default', { month: 'short' }),
+ ...formatters,
+ }}
+ classNames={{
+ root: cn('w-fit', defaultClassNames.root),
+ months: cn(
+ 'flex gap-4 flex-col md:flex-row relative',
+ defaultClassNames.months,
+ ),
+ month: cn('flex flex-col w-full gap-4', defaultClassNames.month),
+ nav: cn(
+ 'flex items-center gap-1 w-full absolute top-0 inset-x-0 justify-between',
+ defaultClassNames.nav,
+ ),
+ button_previous: cn(
+ buttonVariants({ variant: buttonVariant }),
+ 'size-(--cell-size) aria-disabled:opacity-50 p-0 select-none',
+ defaultClassNames.button_previous,
+ ),
+ button_next: cn(
+ buttonVariants({ variant: buttonVariant }),
+ 'size-(--cell-size) aria-disabled:opacity-50 p-0 select-none',
+ defaultClassNames.button_next,
+ ),
+ month_caption: cn(
+ 'flex items-center justify-center h-(--cell-size) w-full px-(--cell-size)',
+ defaultClassNames.month_caption,
+ ),
+ dropdowns: cn(
+ 'w-full flex items-center text-sm font-medium justify-center h-(--cell-size) gap-1.5',
+ defaultClassNames.dropdowns,
+ ),
+ dropdown_root: cn(
+ 'relative has-focus:border-ring border border-input shadow-xs has-focus:ring-ring/50 has-focus:ring-[3px] rounded-md',
+ defaultClassNames.dropdown_root,
+ ),
+ dropdown: cn(
+ 'absolute bg-popover inset-0 opacity-0',
+ defaultClassNames.dropdown,
+ ),
+ caption_label: cn(
+ 'select-none font-medium',
+ captionLayout === 'label'
+ ? 'text-sm'
+ : 'rounded-md pl-2 pr-1 flex items-center gap-1 text-sm h-8 [&>svg]:text-muted-foreground [&>svg]:size-3.5',
+ defaultClassNames.caption_label,
+ ),
+ table: 'w-full border-collapse',
+ weekdays: cn('flex', defaultClassNames.weekdays),
+ weekday: cn(
+ 'text-muted-foreground rounded-md flex-1 font-normal text-[0.8rem] select-none',
+ defaultClassNames.weekday,
+ ),
+ week: cn('flex w-full mt-2', defaultClassNames.week),
+ week_number_header: cn(
+ 'select-none w-(--cell-size)',
+ defaultClassNames.week_number_header,
+ ),
+ week_number: cn(
+ 'text-[0.8rem] select-none text-muted-foreground',
+ defaultClassNames.week_number,
+ ),
+ day: cn(
+ 'relative w-full h-full p-0 text-center [&:first-child[data-selected=true]_button]:rounded-l-md [&:last-child[data-selected=true]_button]:rounded-r-md group/day aspect-square select-none',
+ defaultClassNames.day,
+ ),
+ range_start: cn(
+ 'rounded-l-md bg-accent',
+ defaultClassNames.range_start,
+ ),
+ range_middle: cn('rounded-none', defaultClassNames.range_middle),
+ range_end: cn('rounded-r-md bg-accent', defaultClassNames.range_end),
+ today: cn(
+ 'bg-accent text-accent-foreground rounded-md data-[selected=true]:rounded-none',
+ defaultClassNames.today,
+ ),
+ outside: cn(
+ 'text-muted-foreground aria-selected:text-muted-foreground',
+ defaultClassNames.outside,
+ ),
+ disabled: cn(
+ 'text-muted-foreground opacity-50',
+ defaultClassNames.disabled,
+ ),
+ hidden: cn('invisible', defaultClassNames.hidden),
+ ...classNames,
+ }}
+ components={{
+ Root: ({ className, rootRef, ...props }) => {
+ return (
+
+ )
+ },
+ Chevron: ({ className, orientation, ...props }) => {
+ if (orientation === 'left') {
+ return (
+
+ )
+ }
+
+ if (orientation === 'right') {
+ return (
+
+ )
+ }
+
+ return (
+
+ )
+ },
+ DayButton: CalendarDayButton,
+ WeekNumber: ({ children, ...props }) => {
+ return (
+
+
+ {children}
+
+ |
+ )
+ },
+ ...components,
+ }}
+ {...props}
+ />
+ )
+}
+
+function CalendarDayButton({
+ className,
+ day,
+ modifiers,
+ ...props
+}: React.ComponentProps) {
+ const defaultClassNames = getDefaultClassNames()
+
+ const ref = React.useRef(null)
+ React.useEffect(() => {
+ if (modifiers.focused) ref.current?.focus()
+ }, [modifiers.focused])
+
+ return (
+