finish up marketing push for northwell

This commit is contained in:
2026-07-13 18:36:20 -04:00
parent 2f8dcd66ad
commit d3c30859b2
3 changed files with 117 additions and 55 deletions
+5 -2
View File
@@ -1,14 +1,14 @@
export function SiteFooter() {
return (
<footer className="print-hidden border-t border-border-soft bg-surface/70">
<div className="mx-auto flex max-w-6xl flex-col gap-4 px-4 py-10 text-sm text-muted-foreground sm:px-6 sm:flex-row sm:items-center sm:justify-between">
<div className="mx-auto flex max-w-5xl flex-col gap-4 px-4 py-10 text-sm text-muted-foreground sm:px-6 sm:flex-row sm:items-center sm:justify-between">
<div>
<p className="font-serif text-base font-semibold text-foreground">Medscribe</p>
<p className="mt-1 max-w-md leading-relaxed">
Be known when care gets complicated.
</p>
</div>
<div>
<div className="sm:text-right">
<p>
Built by{" "}
<a
@@ -18,6 +18,9 @@ export function SiteFooter() {
Sean O&apos;Connor
</a>
</p>
<p className="mt-1 text-xs text-muted-foreground/80">
&copy; {new Date().getFullYear()} Hadlock Holdings LLC
</p>
</div>
</div>
</footer>
+7 -4
View File
@@ -6,15 +6,18 @@ export function SiteHeader() {
return (
<header className="print-hidden sticky top-3 z-50 px-3 sm:px-6">
<div className="relative mx-auto max-w-5xl">
<div className="flex h-14 items-center justify-between gap-4 rounded-full border border-border-soft/80 bg-canvas/82 px-4 shadow-[0_10px_30px_rgba(15,23,42,0.08)] backdrop-blur-md sm:px-5">
<div className="relative flex h-14 items-center rounded-full border border-border-soft/80 bg-canvas/82 px-4 shadow-[0_10px_30px_rgba(15,23,42,0.08)] backdrop-blur-md sm:px-5">
<Link
href="/"
className="flex items-center text-foreground transition-opacity hover:opacity-80"
className="relative z-10 flex items-center text-foreground transition-opacity hover:opacity-80"
aria-label="Medscribe home"
>
<MedscribeLogo className="h-7 w-[88px]" />
<MedscribeLogo className="h-7 w-auto" />
</Link>
<span className="text-xs font-medium tracking-[0.14em] text-muted-foreground uppercase">
<p className="pointer-events-none absolute inset-x-0 text-center font-serif text-lg font-semibold tracking-tight text-foreground">
Medscribe
</p>
<span className="relative z-10 ml-auto hidden text-xs font-medium tracking-[0.14em] text-muted-foreground uppercase sm:inline">
Executive summary
</span>
</div>