initial commit

This commit is contained in:
shafin-r
2025-07-03 01:50:10 +06:00
commit 913ec11bc7
49 changed files with 6784 additions and 0 deletions

View File

@ -0,0 +1,23 @@
import React from "react";
const BackgroundWrapper = ({ children }) => {
return (
<div
className="min-h-screen bg-cover bg-center bg-no-repeat relative"
style={{
backgroundImage: "url('/images/static/paper-background.png')",
}}
>
<div
className="min-h-screen"
style={{
backgroundColor: "rgba(0, 0, 0, 0)", // Optional overlay - adjust opacity as needed
}}
>
{children}
</div>
</div>
);
};
export default BackgroundWrapper;