diff --git a/src/components/BgGlassmorphism.tsx b/src/components/BgGlassmorphism.tsx new file mode 100644 index 0000000..bf8bb99 --- /dev/null +++ b/src/components/BgGlassmorphism.tsx @@ -0,0 +1,21 @@ +import React, { FC } from "react"; + +export interface BgGlassmorphismProps { + className?: string; +} + +const BgGlassmorphism: FC = ({ + className = "absolute inset-x-0 md:top-10 xl:top-40 min-h-0 pl-20 py-24 flex overflow-hidden z-0", +}) => { + return ( +
+ + +
+ ); +}; + +export default BgGlassmorphism;