mirror of
https://git.coastit.co.za/caitlin/CRM_ENVR.git
synced 2026-07-10 11:15:43 +02:00
29 lines
924 B
TypeScript
29 lines
924 B
TypeScript
"use client"
|
|
|
|
import { motion } from "framer-motion"
|
|
import { cn } from "@/lib/utils"
|
|
|
|
interface PageHeaderProps {
|
|
title: string | React.ReactNode
|
|
description?: string
|
|
children?: React.ReactNode
|
|
className?: string
|
|
}
|
|
|
|
export function PageHeader({ title, description, children, className }: PageHeaderProps) {
|
|
return (
|
|
<motion.div
|
|
initial={{ opacity: 0, y: -10 }}
|
|
animate={{ opacity: 1, y: 0 }}
|
|
transition={{ duration: 0.3 }}
|
|
className={cn("flex items-center justify-between pb-6", className)}
|
|
>
|
|
<div>
|
|
<h1 className="text-2xl font-bold tracking-tight border-l-4 border-[#C84B4B] dark:border-primary pl-4 text-[#2D3020] dark:text-white">{title}</h1>
|
|
{description && <p className="text-sm text-[#8A9078] dark:text-[#AAAAAA] mt-1">{description}</p>}
|
|
</div>
|
|
{children && <div className="flex items-center gap-3">{children}</div>}
|
|
</motion.div>
|
|
)
|
|
}
|