Skip to content
11 changes: 11 additions & 0 deletions .hallmark/log.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[
{
"date": "2026-06-05",
"macrostructure": "Workbench",
"theme": "custom",
"theme_axes": "dark / mono / cool",
"vibe": "nautical terminal, ocean-deep navy, marine-cyan accent",
"enrichment": "none",
"brief": "Nautical terminal-forward homepage redesign"
}
]
7 changes: 7 additions & 0 deletions .hallmark/preflight.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"fonts": "Geist + JetBrains Mono (next/font/google, apps/www/app/layout.tsx L10, L14)",
"palette": "HSL & Hex custom properties (apps/www/app/styles/theme/light.css :root)",
"motion": "no framework motion library detected (package.json)",
"spacing": "Tailwind spacing (apps/www/app/styles/theme/light.css)",
"framework": "Next.js 16 (app router)"
}
6 changes: 1 addition & 5 deletions apps/www/app/(home)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import type { CSSProperties, ReactNode } from "react";
import { HeaderGithubLink } from "~/components/page/header-github-link";
import { Logo } from "~/components/page/logo";
import { SearchToggle } from "~/components/ui/search-toggle";
import { ThemeToggle } from "~/components/ui/theme-toggle";

export default function Layout({ children }: { children: ReactNode }) {
return (
Expand All @@ -23,15 +22,12 @@ export default function Layout({ children }: { children: ReactNode }) {
]}
actions={[
<SearchToggle key="search" />,
<div key="theme-desktop" className="hidden md:block">
<ThemeToggle />
</div>,
<HeaderGithubLink
key="github"
className="hidden md:flex h-8 text-fd-muted-foreground hover:text-fd-foreground"
/>,
]}
menuActions={[<ThemeToggle key="theme-toggle" />]}
menuActions={[]}
menuSocialActions={[
<HeaderGithubLink
key="github"
Expand Down
Loading
Loading