Renders a full-screen grid background with an optional radial vignette effect, customizable in size, position, and intensity.
// TODO: Add code import { GridVignetteBackground } from "@/components/ui/vignette-grid-background"; import { Button } from "@/components/ui/button"; export default function DemoOne() { return <div className="flex items-center justify-center"> <GridVignetteBackground /> <div className='flex items-center justify-center flex-col gap-5'> <h1 className="text-center text-4xl md:text-6xl font-semibold"> Start your free trial </h1> <p className="text-center text-lg md:text-xl text-muted-foreground"> Join over 4,000+ users already user Molecule UI </p> <Button> <a href="https://moleculeui.design" target="_blank">Get Started</a> </Button> </div> </div>; }
Part of Molecule UI — browse the full library on 21st.dev.