export function GlowingStarsBackgroundCardPreview()

in src/components/ui/starcardcta.tsx [181:200]


export function GlowingStarsBackgroundCardPreview() {
  return (
    <div className="flex py-20 items-center justify-center antialiased">
      <GlowingStarsBackgroundCard>
        <GlowingStarsTitle>Explore the Dashboard!</GlowingStarsTitle>
        <div className="flex justify-between items-end">
          <GlowingStarsDescription>
            Head into world of Statistics and Data through the ResDB Memory Lens.
          </GlowingStarsDescription>
          <Link
            to="/dashboard"
            className="px-4 py-2 bg-white text-black rounded-md hover:bg-black hover:text-white transition-colors"
          >
            Enter ResLens
          </Link>
        </div>
      </GlowingStarsBackgroundCard>
    </div>
  );
}