Wire production domain, CORS for tenant subdomains, celery volume mounts, and nginx reverse proxy configs for apex, API, identity, auth, and wildcard tenants. Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
340 B
TypeScript
15 lines
340 B
TypeScript
import type { ReactNode } from "react";
|
|
|
|
export interface ContainerProps {
|
|
children: ReactNode;
|
|
className?: string;
|
|
}
|
|
|
|
export function Container({ children, className = "" }: ContainerProps) {
|
|
return (
|
|
<div className={`mx-auto w-full max-w-6xl px-4 sm:px-6 lg:px-8 ${className}`}>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|