Skip to content

Commit e4ee943

Browse files
Tighten landing page descriptions (#5560)
* Tighten landing page descriptions Shorten the how-it-works copy on the web landing page. * Add YC logo to trusted marquee Add a local Y Combinator SVG and include it in the landing page credibility marquee. * Match download dropdown width Make the homepage download menu use the split button width instead of a fixed width.
1 parent 9f515ea commit e4ee943

2 files changed

Lines changed: 18 additions & 12 deletions

File tree

apps/web/public/icons/yc.svg

Lines changed: 5 additions & 0 deletions
Loading

apps/web/src/routes/index.tsx

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ const credibilityLogos = [
5757
{ name: "Databricks", src: "/icons/databricks.svg" },
5858
{ name: "Amazon", src: "/icons/amazon.svg", className: "max-h-9" },
5959
{ name: "Meta", src: "/icons/meta.svg", className: "max-h-9" },
60+
{ name: "Y Combinator", src: "/icons/yc.svg" },
6061
{ name: "Palantir", src: "/icons/palantir.svg" },
6162
{ name: "Apple", src: "/icons/apple.svg", className: "max-h-9" },
6263
{ name: "Disney", src: "/icons/disney.svg", className: "max-h-9" },
@@ -338,7 +339,7 @@ function Component() {
338339
AI notepad for private meetings.
339340
</h1>
340341
<p className="mt-6 max-w-2xl text-xl leading-9 text-[#363029]">
341-
An open-source Granola alternative for private meetings,
342+
The open-source Granola alternative for private meetings,
342343
downloaded over 11.9M times. Record locally and choose where AI
343344
runs.
344345
</p>
@@ -772,8 +773,8 @@ function HowItWorksSection() {
772773
How it works
773774
</h2>
774775
<p className="mt-6 text-lg leading-8 text-[#4f4940]">
775-
Write rough notes during the meeting. Anarlog turns them into an
776-
editable summary afterward.
776+
Jot notes during the call. Anarlog turns them into an editable
777+
summary.
777778
</p>
778779
</div>
779780
<div className="relative left-1/2 mt-8 hidden w-screen max-w-[1120px] -translate-x-1/2 sm:grid sm:grid-cols-2">
@@ -784,8 +785,8 @@ function HowItWorksSection() {
784785
<div className="flex flex-col overflow-clip">
785786
<div className="flex flex-col gap-4 p-8">
786787
<p className="text-sm leading-6 text-neutral-600">
787-
<span className="font-semibold">While you take notes,</span>{" "}
788-
Anarlog records from your device. No bot joins the call.
788+
<span className="font-semibold">Take notes.</span> Anarlog records
789+
from your device. No bot joins.
789790
</p>
790791
</div>
791792
<div className="flex flex-1 items-center justify-center bg-stone-50/30 px-8 pb-0">
@@ -826,8 +827,8 @@ function HowItWorksSection() {
826827
<div className="flex flex-col overflow-clip">
827828
<div className="flex flex-col gap-4 p-8">
828829
<p className="text-sm leading-6 text-neutral-600">
829-
<span className="font-semibold">After the meeting is over,</span>{" "}
830-
your rough notes become a summary you can edit and keep.
830+
<span className="font-semibold">After the call,</span> your notes
831+
become an editable summary.
831832
</p>
832833
</div>
833834
<div className="flex flex-1 items-start justify-center bg-stone-50/30 px-8 pb-0">
@@ -954,8 +955,8 @@ function HowItWorksSection() {
954955
<div>
955956
<div className="p-6">
956957
<p className="mb-4 text-sm leading-6 text-neutral-600">
957-
<span className="font-semibold">While you take notes,</span>{" "}
958-
Anarlog records from your device. No bot joins the call.
958+
<span className="font-semibold">Take notes.</span> Anarlog records
959+
from your device. No bot joins.
959960
</p>
960961
</div>
961962
<div className="relative overflow-clip bg-stone-50/30 px-6 pb-0">
@@ -999,8 +1000,8 @@ function HowItWorksSection() {
9991000
<div>
10001001
<div className="p-6">
10011002
<p className="mb-4 text-sm leading-6 text-neutral-600">
1002-
<span className="font-semibold">After the meeting is over,</span>{" "}
1003-
your rough notes become a summary you can edit and keep.
1003+
<span className="font-semibold">After the call,</span> your notes
1004+
become an editable summary.
10041005
</p>
10051006
</div>
10061007
<div className="overflow-clip bg-stone-50/30 px-6 pb-0">
@@ -1188,7 +1189,7 @@ function DownloadButton() {
11881189
{open && (
11891190
<div
11901191
role="menu"
1191-
className="absolute top-[calc(100%+0.5rem)] left-0 z-10 w-80 max-w-[calc(100vw-2.5rem)] rounded-2xl border border-[#d8d0c5] bg-white p-2 shadow-[0_14px_40px_rgba(24,22,19,0.12)]"
1192+
className="absolute top-[calc(100%+0.5rem)] left-0 z-10 w-full max-w-[calc(100vw-2.5rem)] rounded-2xl border border-[#d8d0c5] bg-white p-2 shadow-[0_14px_40px_rgba(24,22,19,0.12)]"
11921193
>
11931194
<a
11941195
href={appleIntelDownloadUrl}

0 commit comments

Comments
 (0)