Your ImageYour Image
  • About
  • Templates
  • Blocks
  • Components
  • About
  • Components
  • Pricing
  • Contact
Book an Intro call
logo

I create digital experiences that connect and inspire. I build apps, websites, brands, and products end-to-end.

  • About
  • Components
  • Pricing
  • Templates
  • Blocks
  • components
  • Privacy
  • Terms
  • Contact
© 2025Made with by Ali Imam
FeaturedHeroLogosPricingCall to ActionStatsLoginDashboard
Open in New Tab
Files
app/logos-01/page.tsx
"use client";

import {
  ClaudeAi,
  Cursor,
  DeepSeek,
  Gemini,
  GitHub,
  Google,
  Grok,
  Replicate,
} from "@aliimam/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">
        Trusted by the world’s most creative companies.
      </h1>
      <div className="mx-auto max-w-5xl px-6">
        <div className="flex flex-wrap h-full w-full items-center justify-center gap-x-20 gap-y-12">
          <ClaudeAi type="wordmark" size={200} height={30} />
          <Replicate type="wordmark" size={200} height={30} />
          <Cursor type="wordmark" size={200} height={25} />
          <GitHub type="wordmark" size={200} height={30} />
          <Grok type="wordmark" size={200} height={40} />
          <Google type="wordmark" size={200} height={40} />
        </div>
      </div>
    </div>
  );
}
A simple logos section.
logos-01
logos-01logos-01
Open in New Tab
Files
app/login-01/page.tsx
import { LoginForm } from "@/components/login-form"

export default function Page() {
  return (
    <div className="flex min-h-svh w-full items-center justify-center p-6 md:p-10">
      <div className="w-full max-w-sm">
        <LoginForm />
      </div>
    </div>
  )
}
A simple login form.
login-01
login-01login-01