feat: launch public product website

This commit is contained in:
2026-08-20 20:13:35 -04:00
parent d3c30859b2
commit 81109f36ea
41 changed files with 4378 additions and 386 deletions
+32
View File
@@ -0,0 +1,32 @@
import type { Metadata } from "next";
import { CvsPrintSummary } from "~/components/cvs-print-summary";
import { PrintButton } from "~/components/print-button";
import { SectionLabel } from "~/components/section-label";
export const metadata: Metadata = {
title: "CVS executive summary",
robots: { index: false, follow: false, nocache: true },
};
export default function CvsSummaryPage() {
return (
<>
<CvsPrintSummary />
<div className="print-hidden mx-auto max-w-2xl px-4 py-16 text-center sm:px-6 lg:py-24">
<SectionLabel>Executive summary · CVS Health</SectionLabel>
<h1 className="text-foreground mt-4 font-serif text-4xl font-semibold tracking-tight sm:text-5xl">
The pharmacy executive summary
</h1>
<p className="text-muted-foreground mx-auto mt-5 max-w-xl leading-relaxed">
This page is formatted as a two-page print document: the medication
record that moves adherence, keeps refills, and lowers cost of care.
Use Print PDF (or Cmd+P, then Save as PDF) to export it.
</p>
<div className="mt-8 flex justify-center">
<PrintButton size="lg" />
</div>
</div>
</>
);
}