fix footer section padding

This commit is contained in:
2026-06-25 17:10:35 +05:30
parent b233992f30
commit 7f6b42153a
11 changed files with 497 additions and 172 deletions

View File

@@ -28,8 +28,8 @@ const LEGAL = [
export function PremiumFooter() {
return (
<footer className="bg-gradient-to-br from-[#16001D] to-[#25002F] rounded-t-[2.5rem] md:rounded-t-[3.5rem] rounded-b-none overflow-hidden text-white select-none w-full shadow-[0_-12px_40px_rgba(22,0,29,0.12)]">
<div className="page-container pt-16 pb-10 flex flex-col">
<footer className="premium-footer-shell bg-gradient-to-br from-[#16001D] to-[#25002F] rounded-t-[28px] md:rounded-t-[40px] rounded-b-none overflow-hidden text-white select-none shadow-[0_-12px_40px_rgba(22,0,29,0.12)]">
<div className="mx-auto max-w-[1440px] px-6 md:px-10 xl:px-16 pt-16 pb-10 flex flex-col">
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-[minmax(320px,1.6fr)_repeat(3,minmax(150px,1fr))] gap-8 lg:gap-x-[clamp(56px,6vw,120px)] w-full text-left items-start">
{/* Column 1: Brand & Description */}
<div className="flex flex-col gap-4 md:col-span-2 lg:col-span-1">

View File

@@ -18,7 +18,6 @@ export function PremiumPageShell({ children, className = "" }: PremiumPageShellP
{children}
</main>
{/* Footer */}
<PremiumFooter />
</div>
);