update home page

This commit is contained in:
2026-06-18 16:32:31 +05:30
parent d9cc83aa82
commit 8e0d704438
57 changed files with 2813 additions and 301 deletions

View File

@@ -0,0 +1,22 @@
import { type ReactNode } from "react";
interface PageContainerProps {
children: ReactNode;
className?: string;
}
/**
* PageContainer — global max-width + horizontal padding wrapper.
*
* Every section's inner content should be wrapped in this to ensure
* consistent container width across all pages.
*
* Default: max-w-[1260px], px-[15px], mx-auto
*/
export function PageContainer({ children, className = "" }: PageContainerProps) {
return (
<div className={`mx-auto w-full max-w-[1260px] px-[15px] ${className}`}>
{children}
</div>
);
}