Skip to content

Commit 9aef0e7

Browse files
committed
fixed key differences table
1 parent bf69171 commit 9aef0e7

File tree

5 files changed

+11
-12
lines changed

5 files changed

+11
-12
lines changed

src/layouts/alternatives/ComparisonTable.astro

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
const comparisonData = {
33
openlane: {
44
name: "Openlane",
5-
tagline: "Open-source compliance automation",
5+
tagline: "Open-source",
66
features: [
77
{ name: "Multi-Framework Support", value: true },
88
{ name: "Custom Frameworks", value: true },
@@ -20,7 +20,7 @@ const comparisonData = {
2020
},
2121
drata: {
2222
name: "Drata",
23-
tagline: "Proprietary compliance platform",
23+
tagline: "Proprietary",
2424
features: [
2525
{ name: "Multi-Framework Support", value: "Add-on" },
2626
{ name: "Custom Frameworks", value: false },
@@ -38,7 +38,7 @@ const comparisonData = {
3838
},
3939
vanta: {
4040
name: "Vanta",
41-
tagline: "Proprietary compliance platform",
41+
tagline: "Proprietary",
4242
features: [
4343
{ name: "Multi-Framework Support", value: "Add-on" },
4444
{ name: "Custom Frameworks", value: "Add-on" },
@@ -56,12 +56,12 @@ const comparisonData = {
5656
},
5757
secureframe: {
5858
name: "SecureFrame",
59-
tagline: "Proprietary compliance platform",
59+
tagline: "Proprietary",
6060
features: [
6161
{ name: "Multi-Framework Support", value: "Add-on" },
6262
{ name: "Custom Frameworks", value: "Add-on" },
6363
{ name: "Evidence Automation", value: true },
64-
{ name: "Starting Price", value: "Not Transparent" },
64+
{ name: "Starting Price", value: "~10,000" },
6565
{ name: "Cloud Pricing", value: "Not Transparent" },
6666
{ name: "Per-User Fees", value: "Not Transparent" },
6767
{ name: "Transparent Pricing", value: false },
@@ -74,7 +74,7 @@ const comparisonData = {
7474
},
7575
compai: {
7676
name: "CompAI",
77-
tagline: "Source-Available (Cloud-Dependent) compliance platform",
77+
tagline: "Source-Available (Cloud-Dependent)",
7878
features: [
7979
{ name: "Multi-Framework Support", value: "Add-on" },
8080
{ name: "Custom Frameworks", value: "Add-on" },
@@ -126,7 +126,7 @@ const alternativeData = comparisonData[alt];
126126
<div class="flex flex-col items-center gap-1">
127127
<span class="text-base">{alternativeData.name}</span>
128128
<span class="text-xs font-normal text-gray-500"
129-
>Proprietary</span
129+
>{alternativeData.tagline}</span
130130
>
131131
</div>
132132
</th>

src/pages/alternatives/compai-alternative.astro

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ const schema = {
3434
<Navigation />
3535
<Hero alt="CompAI" />
3636
<ComparisonTable alt="compai" />
37-
<KeyDifferences alt="CompAI" />
38-
<KeyDifferences openString="partially open-source, giving you visibility into some of their code, but not truly self-hostable or fully transparent"
37+
<KeyDifferences alt="CompAI" openString="partially open-source, giving you visibility into some of their code, but not truly self-hostable or fully transparent" startingPrice="~15,000"/>
3938
<Migration />
4039
</BaseLayout>

src/pages/alternatives/drata-alternative.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ const schema = {
3434
<Navigation />
3535
<Hero alt="Drata" />
3636
<ComparisonTable alt="drata" />
37-
<KeyDifferences alt="Drata" />
37+
<KeyDifferences alt="Drata" startingPrice="~20,000" />
3838
<Migration />
3939
</BaseLayout>

src/pages/alternatives/secureframe-alternative.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ const schema = {
3434
<Navigation />
3535
<Hero alt="SecureFrame" />
3636
<ComparisonTable alt="secureframe" />
37-
<KeyDifferences alt="SecureFrame" />
37+
<KeyDifferences alt="SecureFrame" startingPrice="~10,000"/>
3838
<Migration />
3939
</BaseLayout>

src/pages/alternatives/vanta-alternative.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ const schema = {
3434
<Navigation />
3535
<Hero alt="Vanta" />
3636
<ComparisonTable alt="vanta" />
37-
<KeyDifferences alt="Vanta" />
37+
<KeyDifferences alt="Vanta" startingPrice="~25,000"/>
3838
<Migration />
3939
</BaseLayout>

0 commit comments

Comments
 (0)