Skip to content

Commit fd41368

Browse files
authored
Merge pull request #474 from shnai0/design-of-entrance
Design of entrance
2 parents 476834d + 5ae6f9b commit fd41368

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

app/(static)/alternatives/[slug]/page.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export default async function AlternativePage({
4747
<div className="flex flex-1 flex-col justify-center bg-white text-black">
4848
<div className="mx-auto w-full max-w-5xl px-4 text-center md:px-8">
4949
<div className="pt-32">
50-
<div className=" pb-4">
50+
<div className="pb-4">
5151
<img
5252
src={alternative.imageUrl!}
5353
alt="App screenshot"
@@ -60,7 +60,7 @@ export default async function AlternativePage({
6060
Free {alternative.name} alternative
6161
</div> */}
6262
<h1 className="text-balance text-6xl">{alternative.title}</h1>
63-
<p className="mx-auto mt-8 max-w-3xl text-balance text-xl md:text-2xl">
63+
<p className="mx-auto mt-8 max-w-3xl text-balance text-xl md:text-2xl">
6464
{alternative.description}
6565
</p>
6666
<div className="space-x-2 pt-8">
@@ -93,16 +93,16 @@ export default async function AlternativePage({
9393
{/* Comparison section */}
9494
<div className="mx-auto w-full max-w-5xl px-4 md:px-8">
9595
<div className="pb-2 pt-32">
96-
<h2 className="text-balance text-5xl">
96+
<h2 className="text-balance text-5xl">
9797
{alternative.subtitlecompare}
9898
</h2>
9999
<p className="mt-8 max-w-3xl text-balance text-xl">
100100
{alternative.descriptioncompare}
101101
</p>
102102
</div>
103103
<div className="bg-white py-16">
104-
<div className="mx-auto max-w-5xl ">
105-
<div className="isolate grid grid-cols-1 overflow-hidden rounded-xl border border-black md:grid-cols-2">
104+
<div className="mx-auto max-w-5xl">
105+
<div className="isolate grid grid-cols-1 overflow-hidden rounded-xl border border-black md:grid-cols-2">
106106
{/* Column 1 - Papermark */}
107107
<div className="flex flex-col justify-between border-r-0 border-black md:odd:border-r xl:last:!border-r-0 xl:even:border-r">
108108
<div>
@@ -118,7 +118,7 @@ export default async function AlternativePage({
118118
<div className="flex flex-col justify-between"></div>
119119

120120
<p className="mt-4 text-balance text-2xl font-semibold leading-6 text-gray-900">
121-
$0
121+
from $0
122122
</p>
123123
<ul className="mt-8 space-y-3 text-sm leading-6 text-gray-500">
124124
<li className="flex items-center gap-x-3">
@@ -147,7 +147,7 @@ export default async function AlternativePage({
147147
className="h-6 w-6 text-green-500"
148148
aria-hidden="true"
149149
/>
150-
Custom domain
150+
Custom domains
151151
</li>
152152
<li className="flex items-center gap-x-3">
153153
<CheckIcon
@@ -161,7 +161,7 @@ export default async function AlternativePage({
161161
className="h-6 w-6 text-green-500"
162162
aria-hidden="true"
163163
/>
164-
Data Room
164+
Unlimited Data Rooms
165165
</li>
166166

167167
{/* Add additional features here */}

components/web/alternatives/featurestable.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ const tools: ToolFeature[] = [
152152
const featureDisplayNames: { [key: string]: string } = {
153153
emailCapture: "Advanced link controls",
154154
teamAccess: "Team Access",
155-
customDomain: "Custom Branding",
155+
customDomain: "Advanced Branding",
156156
customDomain2: "Custom Domain for Data Rooms",
157157
unlimitedDocuments: "Unlimited Documents",
158158
trackAnalytics: "Analytics on each page",
@@ -217,7 +217,7 @@ export default function ComparisonTable() {
217217
{tools.map((tool) => (
218218
<td
219219
key={tool.name}
220-
className={`px-3 py-4 text-sm ${
220+
className={`px-3 py-4 text-sm ${
221221
tool.name === "Papermark"
222222
? "bg-green-50 font-semibold text-green-700"
223223
: ""

0 commit comments

Comments
 (0)