Refactor page components to include PagePixelDivider for improved visual separation across multiple pages. Updated layout in Home, Giris, Gizlilik, Iletisim, Kosullar, Listem, Odeme Sonuc, Paket, and Sonuc pages to enhance user experience and maintain consistency.
All checks were successful
Deploy / deploy (push) Successful in 2m47s
All checks were successful
Deploy / deploy (push) Successful in 2m47s
This commit is contained in:
@@ -185,6 +185,21 @@ export function PixelDivider({
|
||||
);
|
||||
}
|
||||
|
||||
/** Alt sayfa başlıklarını içerikten ayıran kompakt piksel imzası. */
|
||||
export function PagePixelDivider({
|
||||
seed = 5,
|
||||
className,
|
||||
}: {
|
||||
seed?: number;
|
||||
className?: string;
|
||||
}) {
|
||||
return (
|
||||
<div aria-hidden="true" className={cn("w-40", className)}>
|
||||
<PixelDivider seed={seed} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
/** Küçük sabit süslerde (mark/korner) data-px öznitelikli rect. */
|
||||
function fixedPixel(x: number, y: number, opacity: number) {
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user