This commit is contained in:
f-trycua
2025-11-12 19:16:00 +01:00
parent 6f04b80b11
commit 8cc273e0e8
12 changed files with 86 additions and 59 deletions
+2 -9
View File
@@ -9,12 +9,7 @@ export function Hero({ children }: { children: React.ReactNode }) {
xmlns="http://www.w3.org/2000/svg"
>
<defs>
<pattern
id="hero-grid"
width="40"
height="40"
patternUnits="userSpaceOnUse"
>
<pattern id="hero-grid" width="40" height="40" patternUnits="userSpaceOnUse">
<path
d="M 40 0 L 0 0 0 40"
fill="none"
@@ -33,9 +28,7 @@ export function Hero({ children }: { children: React.ReactNode }) {
</div>
{/* Content */}
<div className="relative z-10">
{children}
</div>
<div className="relative z-10">{children}</div>
</div>
);
}