Components
Loading preview...
Here is Background Components component
npx shadcn@latest add https://21st.dev/r/meghtrix/background-components// This is file of your component
// You can use any dependencies from npm; we import them automatically in package.json
import { cn } from "@/lib/utils";
import { useState } from "react";
export const Component = () => {
const [count, setCount] = useState(0);
return (
<div className="min-h-screen w-full bg-[#faf9f6] relative">
{/* Paper Texture */}
<div
className="absolute inset-0 z-0"
style={{
backgroundImage: `
radial-gradient(circle at 1px 1px, rgba(0,0,0,0.08) 1px, transparent 0),
repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.02) 2px, rgba(0,0,0,0.02) 4px),
repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,0.02) 2px, rgba(0,0,0,0.02) 4px)
`,
backgroundSize: "8px 8px, 32px 32px, 32px 32px",
}}
/>
{/* Your Content/Components */}
</div>
);
};
export default Component;