Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion demo/components/site-footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ const COLUMNS: { heading: string; links: { label: string; href: string }[] }[] =
label: "Architecture draft",
href: "https://or13.github.io/emblem.red/draft-steele-diem-architecture-demo.html",
},
{ label: "Source · OR13/emblem.red", href: "https://github.com/OR13/emblem.red" },
{ label: "Contribute · OR13/emblem.red", href: "https://github.com/OR13/emblem.red" },
{ label: "Issues", href: "https://github.com/OR13/emblem.red/issues" },
],
},
{
Expand Down
12 changes: 12 additions & 0 deletions demo/components/site-header.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
"use client";

import Link from "next/link";
import { GithubLogo } from "@phosphor-icons/react";
import { cn } from "@/lib/utils";
import { buttonVariants } from "@/components/ui/button";
import { ThemeToggle } from "@/components/theme-toggle";
import { BrandMark } from "@/components/brand-mark";

const REPO_URL = "https://github.com/OR13/emblem.red";

export function Wordmark() {
return (
<Link href="/" className="group flex items-center gap-2.5 no-underline" aria-label="emblem.red home">
Expand All @@ -29,6 +32,15 @@ export function SiteHeader({ showVerify = true }: { showVerify?: boolean }) {
>
DIEM WG
</a>
<a
href={REPO_URL}
target="_blank"
rel="noreferrer"
aria-label="Contribute on GitHub"
className="inline-flex h-8 w-8 items-center justify-center text-muted-foreground transition-colors hover:text-foreground"
>
<GithubLogo className="h-5 w-5" weight="fill" />
</a>
<ThemeToggle />
{showVerify && (
<Link href="/verify" className={cn(buttonVariants({ size: "sm" }))}>
Expand Down
2 changes: 1 addition & 1 deletion draft-steele-diem-architecture-demo.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pi: [toc, sortrefs, symrefs]

venue:
github: "OR13/emblem.red"
latest: "https://emblem.red/draft-steele-diem-architecture-demo.html"
latest: "https://or13.github.io/emblem.red/draft-steele-diem-architecture-demo.html"

author:
-
Expand Down