File size: 687 Bytes
0bfe2e3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
'use client';
import { cn } from '@/components/ui/core/styling';
import React from 'react';

export function LayoutHeaderBackground() {
  return (
    <>
      <div
        data-layout-header-background
        className={cn(
          // "bg-[url(/pattern-3.svg)] bg-[#000] opacity-50 bg-contain bg-center bg-repeat z-[-2] w-full h-[20rem] absolute bottom-0",
          'bg-[#000] opacity-50 bg-contain bg-center bg-repeat z-[-2] w-full h-[20rem] absolute bottom-0'
        )}
      ></div>
      <div
        data-layout-header-background-gradient
        className="w-full absolute bottom-0 h-[8rem] bg-gradient-to-t from-[--background] to-transparent z-[-2]"
      />
    </>
  );
}