GRV-Summit-Site/components/layout/FooterSurface.tsx
Kirubel-Kibru-Yaltopia d261148b35
Some checks are pending
Deploy to Cloudflare Workers (OpenNext) / deploy (push) Waiting to run
Enhance footer and hero with brand backgrounds
2026-05-21 20:35:59 +03:00

22 lines
497 B
TypeScript

import type { ReactNode } from "react";
import { cn } from "@/lib/utils";
type Props = {
children: ReactNode;
className?: string;
};
/** White panel so footer copy and icons stay readable over the geometric pattern. */
export function FooterSurface({ children, className }: Props) {
return (
<div
className={cn(
"rounded-2xl border border-[#1a5c38]/14 bg-white p-6 shadow-md shadow-[#1a5c38]/6 md:p-8",
className
)}
>
{children}
</div>
);
}