Enhance header component with scroll detection for improved UX; add new input field for search functionality, update styles for links, and adjust layout for responsiveness

This commit is contained in:
Mobin 2025-03-24 14:27:16 +03:30
parent 16a13e1d47
commit ee804857e3
5 changed files with 78 additions and 24 deletions

View file

@ -1,6 +1,6 @@
import * as React from "react"
import * as React from "react";
import { cn } from "@/lib/utils"
import { cn } from "@/lib/utils";
function Input({ className, type, ...props }: React.ComponentProps<"input">) {
return (
@ -15,7 +15,7 @@ function Input({ className, type, ...props }: React.ComponentProps<"input">) {
)}
{...props}
/>
)
);
}
export { Input }
export { Input };