DalimDalim logoDalim logoDalimDalim logoDalim logo
  • UI
  • Components New
  • Blocks
  • Templates
  • Colors
  • Easings
DalimDalim logoDalim logo

Stay Connected

Join our newsletter for the latest updates and exclusive offers.

Quick Links

UIBlocksColorsEasingsContact

Contact Us

Bokaro, IndiaPhoneEmail

Follow Us

LinkedInTwitter XInstagram

© 2025 Dalim. All rights reserved.

Privacy PolicyTerms of Service
Category

Blocks

Explore categorized UI blocks for faster development.

FeaturedHeroLogosPricingCall to ActionStatsLoginDashboard
Browse more blocks
A simple hero section
Open in New Tab
Open in
Files
app/hero-01/page.tsx
"use client"

import { Hero } from "@/components/hero"
import { RenderCanvas } from "@/components/ui/backgrounds/render-canvas"

export default function Page() {
  return (
    <div className="relative min-h-svh w-full overflow-y-auto">
      <RenderCanvas
        lineWidth={20}
        trails={100}
        width={1400}
        height={920}
        className="absolute inset-0"
      />

      <div className="relative z-40 flex min-h-svh items-center justify-center">
        <Hero />
      </div>
    </div>
  )
}
A simple hero section
hero-01
hero-01hero-01
A simple hero section
Open in New Tab
Open in
Files
app/hero-04/page.tsx
import { Hero } from "@/components/hero"
import { ShaderRGB } from "@/components/ui/backgrounds/shader-rgb"

export default function DemoOne() {
  return (
    <div className="relative flex min-h-svh w-full flex-col items-center justify-center overflow-y-auto">
      <ShaderRGB />
      <Hero />
    </div>
  )
}
A simple hero section
hero-04
hero-04hero-04
A simple client logo section
Open in New Tab
Open in
Files
app/logos-03/page.tsx
"use client"

import { ClientLogos } from "@/components/logos"

export default function Page() {
  return (
    <div className="flex min-h-screen w-full flex-col items-center justify-center p-6 md:p-10">
      <h1 className="mb-10 px-6 text-center text-lg font-medium">
        We collaborate with the design industry’s leading innovators.
      </h1>
      <ClientLogos />
    </div>
  )
}
A simple client logo section
logos-03

logos-03

We collaborate with the design industry’s leading innovators.

pnpm dlx shadcn@latest add "https://ui.dalim.in/r/logos-03.json"
A simple pricing section
Open in New Tab
Open in
Files
app/pricing-01/page.tsx
import { PricingCard } from "@/components/price"

export default function Page() {
  return (
    <div className="flex min-h-svh w-full items-center justify-center p-6 md:p-10">
      <PricingCard />
    </div>
  )
}
A simple pricing section
pricing-01
pricing-01pricing-01
A simple call to action form
Open in New Tab
Open in
Files
app/call-to-action-02/page.tsx
"use client"

import Link from "next/link"
import { ChevronRight } from "lucide-react"

import { Timeline } from "@/components/timeline"
import { cn } from "@/lib/utils"
import { ShineBorder } from "@/components/ui/backgrounds/shine-border"
import { buttonVariants } from "@/components/ui/button"

export default function CTASection() {
  return (
    <section className="flex min-h-screen w-full items-center justify-center p-6 md:p-10">
      <ShineBorder
        borderRadius={30}
        borderWidth={4}
        className="mx-auto max-w-xl"
      >
        <div className="p-10">
          <h1 className="mb-8 text-center text-2xl md:text-2xl">
            How it Works?
          </h1>
          <Timeline />
          <div className="text-primary z-10 mt-6 flex flex-col items-center text-center">
            <h1 className="text-lg font-semibold md:text-4xl">
              Design anything you need
            </h1>
            <p className="mt-2 text-slate-600 dark:text-slate-400">
              No credit card required.
            </p>
            <div className="mt-4 grid gap-2 md:flex">
              <Link
                href="#"
                className={cn(
                  buttonVariants({
                    size: "lg",
                    variant: "default",
                  }),
                  "group"
                )}
              >
                Get Started
                <ChevronRight className="ml-1 size-4 transition-all duration-300 ease-out group-hover:translate-x-1" />
              </Link>
              <Link
                target="_blank"
                href="https://cal.com/dalim/15min"
                className={cn(
                  buttonVariants({
                    size: "lg",
                    variant: "outline",
                  }),
                  "group"
                )}
              >
                Book a call
                <ChevronRight className="ml-1 size-4 transition-all duration-300 ease-out group-hover:translate-x-1" />
              </Link>
            </div>
          </div>
          <div className="bg-background absolute inset-0 -z-10 rounded-full opacity-40 blur-xl" />
        </div>
      </ShineBorder>
    </section>
  )
}
A simple call to action form.
call-to-action-02
call-to-action-02call-to-action-02
"use client"

import { ClientLogos } from "@/components/logos"

export default function Page() {
  return (
    <div className="flex min-h-screen w-full flex-col items-center justify-center p-6 md:p-10">
      <h1 className="mb-10 px-6 text-center text-lg font-medium">
        We collaborate with the design industry’s leading innovators.
      </h1>
      <ClientLogos />
    </div>
  )
}