{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "announcement-3",
  "description": "Minimalist, technical Daytona-style header with top bar and GitHub stats.",
  "dependencies": [
    "lucide-react"
  ],
  "registryDependencies": [
    "button"
  ],
  "files": [
    {
      "path": "registry/blocks/announcement/3/daytona-header.tsx",
      "content": "\"use client\";\n\nimport { Github } from \"lucide-react\";\nimport { Logo } from \"@/components/logo\";\nimport { Button } from \"@/components/ui/button\";\n\nexport default function DaytonaHeader() {\n  return (\n    <header className=\"sticky top-0 z-50 w-full bg-background font-sans tracking-tight\">\n      {/* Top Announcement Bar */}\n      <div className=\"flex h-10 items-center justify-center border-border border-b bg-muted/40 px-4 text-center\">\n        <p className=\"font-medium text-[13px] text-muted-foreground\">\n          Freddy UI Pro: Elevate your SaaS dashboard with 50+ new premium blocks\n          {\" // \"}\n          <span className=\"cursor-pointer text-foreground underline underline-offset-4 transition-colors hover:text-primary\">\n            Get Pro →\n          </span>\n        </p>\n      </div>\n\n      {/* Main Navigation */}\n      <nav className=\"mx-auto flex h-16 max-w-7xl items-center justify-between px-4 sm:px-6 lg:px-8\">\n        <div className=\"flex items-center gap-6\">\n          {/* Logo Section with Separator */}\n          <div className=\"flex items-center gap-4\">\n            <Logo className=\"h-6\" />\n            <span aria-hidden=\"true\" className=\"font-thin text-2xl text-border\">\n              /\n            </span>\n          </div>\n\n          {/* All-Caps Navigation Links */}\n          <div className=\"hidden items-center gap-6 md:flex\">\n            {[\"Components\", \"Blocks\", \"Templates\", \"Showcase\", \"Docs\"].map(\n              (item) => (\n                <a\n                  className=\"font-bold text-[11px] text-muted-foreground uppercase tracking-[0.2em] transition-colors hover:text-foreground\"\n                  href=\"#\"\n                  key={item}\n                >\n                  {item}\n                </a>\n              )\n            )}\n          </div>\n        </div>\n\n        {/* Right Actions */}\n        <div className=\"flex items-center gap-3\">\n          <Button\n            className=\"hidden font-bold text-[13px] text-muted-foreground transition-colors hover:bg-accent hover:text-foreground md:inline-flex\"\n            type=\"button\"\n            variant=\"ghost\"\n          >\n            Log In\n          </Button>\n\n          {/* GitHub Stars Mock Button */}\n          <Button\n            className=\"flex h-9 items-center gap-2 rounded-lg border-border bg-muted/30 px-3 transition-all hover:bg-muted/50 active:scale-[0.98]\"\n            type=\"button\"\n            variant=\"outline\"\n          >\n            <Github className=\"h-4 w-4\" />\n            <div className=\"flex items-center gap-2\">\n              <span className=\"h-4 w-px bg-border\" />\n              <span className=\"font-bold text-[13px] text-foreground tabular-nums\">\n                50.5k\n              </span>\n            </div>\n          </Button>\n        </div>\n      </nav>\n    </header>\n  );\n}\n",
      "type": "registry:component"
    }
  ],
  "meta": {
    "height": "50vh",
    "isPinned": true,
    "createdAt": "2026-03-28"
  },
  "categories": [
    "announcement",
    "header"
  ],
  "type": "registry:block"
}