Category

Blocks

Explore categorized UI blocks for faster development.

Files
app/stats-01/page.tsx
"use client"

import { Stats } from "@/components/stats"

export default function Page() {
  return (
    <div className="flex min-h-svh w-full flex-col items-center justify-center p-6 md:p-10">
      <h1 className="text-primary/60 mb-10 max-w-sm text-center text-sm md:max-w-md">
        Dalim is more than just models - it powers APIs and platforms that help
        developers and businesses innovate.
      </h1>
      <Stats />
    </div>
  )
}
A simple stats section
stats-01

stats-01

Files
app/stats-02/page.tsx
"use client"

import { Stats } from "@/components/stats"

export default function Page() {
  return (
    <div className="flex min-h-svh w-full flex-col items-center justify-center p-6 md:p-10">
      <h1 className="text-primary/60 mb-10 max-w-sm text-center text-sm md:max-w-md">
        Dalim is more than just models - it powers APIs and platforms that help
        developers and businesses innovate.
      </h1>
      <Stats />
    </div>
  )
}
A simple stats section
stats-02

stats-02

Files
app/stats-03/page.tsx
"use client"

import { Stats } from "@/components/stats"

export default function Page() {
  return (
    <div className="flex min-h-svh w-full flex-col items-center justify-center p-6 md:p-10">
      <h1 className="text-primary/60 mb-10 max-w-sm text-center text-sm md:max-w-md">
        Our Technology, Your Advantage.
      </h1>
      <Stats />
    </div>
  )
}
A simple stats section
stats-03

stats-03