NotSimpleUI LogoNotSimpleUI
ComponentsFolders

Work Files Card

A modern 1:1 pixel-accurate Apple-inspired dark folder card component featuring luscious grainy mesh gradients, custom wallpaper image support, color presets, matching charcoal border frame, and 3 fanning document sheets.

Preview

Work files

Notes & More
2 386 Files

Customize Preset & Color

Preset
Color

Installation

import { WorkFilesCard } from "@/components/folders";

// 1. Default (uses the atmospheric sample artwork with film grain)
export function ExampleDefault() {
  return (
    <WorkFilesCard
      title="Work files"
      subtitle="Notes & More"
      filesCount="2 386 Files"
    />
  );
}

// 2. Using a Custom Wallpaper / Texture Image (with auto grain & glass sheen)
export function ExampleCustomImage() {
  return (
    <WorkFilesCard
      title="Artwork & More"
      subtitle="Design Collection"
      filesCount="4 120 Files"
      image="/assets/wallpapers/custom-mesh.jpg"
    />
  );
}

// 3. Using a Built-in Preset ("blue" | "crimson" | "purple" | "amber")
export function ExamplePreset() {
  return (
    <WorkFilesCard
      title="Work files"
      subtitle="Notes & More"
      filesCount="2 386 Files"
      preset="blue"
    />
  );
}

// 4. Using a Specific Custom Color (e.g. Emerald, Rose, Amber)
export function ExampleColor() {
  return (
    <WorkFilesCard
      title="Finances"
      subtitle="Invoices & Reports"
      filesCount="842 Files"
      color="#059669"
    />
  );
}

Component Code

Props

PropTypeDefaultDescription
imagestring"https://i.pinimg.com/736x/f9/af/7c/f9af7cd73a70cfb079b35c4c9db8a1b2.jpg"Custom wallpaper or texture image URL/path (automatically receives tactile film grain & glass sheen)
preset"blue" | "crimson" | "purple" | "amber"undefinedBuilt-in color mesh gradient preset
colorstringundefinedSpecific custom color (e.g. "#059669", "#f97316")
gradientstringundefinedSpecific custom CSS gradient string
titlestring"Work files"The primary title text
subtitlestring"Notes & More"The subtitle category text
filesCountstring"2 386 Files"The file count badge text at the bottom

On this page