Awards 2 - Sticky label with awards list
shadcnblocks/awards2FreeBlock
A two-column layout with a small uppercase label and sticky positioning beside a list of award titles and years separated by hairline borders.
Install it
npx shadcn@latest add https://www.shadcnblocks.com/r/awards2.jsonSource
1import React from "react";23import { cn } from "@/lib/utils";45interface Awards2Props {6 className?: string;7}89const Awards2 = ({ className }: Awards2Props) => {10 const awards = [11 { title: "Creative Collaboration Award", year: "2023" },12 { title: "Design Excellence Prize", year: "2023" },13 { title: "Innovation in Web Development", year: "2022" },14 { title: "Best User Experience Design", year: "2022" },15 { title: "Outstanding Visual Design", year: "2021" },16 { title: "Digital Innovation Award", year: "2021" },17 { title: "Creative Technology Excellence", year: "2020" },18 { title: "Best Interactive Design", year: "2020" },19 { title: "Web Design Achievement", year: "2019" },20 ];2122 return (23 <section className={cn("py-32", className)}>24 <div className="container">25 <div className="grid grid-cols-1 gap-20 lg:grid-cols-6">26 <div className="top-10 col-span-2 flex h-fit w-fit items-center gap-3 py-8 lg:sticky">27 <span className="size-3 bg-orange-500" />28 <p className="text-2xl text-foreground/30 uppercase">AWARDS</p>29 </div>30 <ul className="col-span-4 w-full">31 {awards.map((award, index) => (32 <li key={index} className="flex justify-between border-b py-4">33 <h3 className="text-2xl font-medium tracking-tight">34 {award.title}35 </h3>36 <p className="font-mono text-lg tracking-tighter text-foreground/50">37 {award.year}38 </p>39 </li>40 ))}41 </ul>42 </div>43 </div>44 </section>45 );46};4748export { Awards2 };
Files it writes
More from shadcnblocks
All 3,968 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| About 1 - Multi-Section Mission Valuesabout1 | shadcnblocks | Blocks | Paid | no deps | |
| About 10 - Sticky Sidebar Company Profileabout10 | shadcnblocks | Blocks | Paid | no deps | |
| About 12 - Agency Profile with Process Cardsabout12 | shadcnblocks | Blocks | Paid | no deps | |
| About 13 - Story with Avatar Profileabout13 | shadcnblocks | Blocks | Paid | no deps | |
| About 14 - About with Hero Imageabout14 | shadcnblocks | Blocks | Paid | no deps | |
| About 15 - Tilted Photo Profile Cardabout15 | shadcnblocks | Blocks | Paid | no deps | |
| About 16 - Why Us Stats Sectionabout16 | shadcnblocks | Blocks | Paid | no deps | |
| About 17 - Interactive Tab Profileabout17 | shadcnblocks | Blocks | Paid | no deps |
