diff --git a/docs/sdks/introduction.mdx b/docs/sdks/introduction.mdx
index 6f7b3834..cd52b8b6 100644
--- a/docs/sdks/introduction.mdx
+++ b/docs/sdks/introduction.mdx
@@ -138,7 +138,7 @@ Turnkey also has several [wrappers for popular web3 libraries](https://docs.turn
,
],
[
- "Arbitrary Request Signing",
+ "Request Authentication",
"Stamping",
,
,
@@ -154,6 +154,7 @@ Turnkey also has several [wrappers for popular web3 libraries](https://docs.turn
,
,
,
@@ -181,7 +183,8 @@ Turnkey also has several [wrappers for popular web3 libraries](https://docs.turn
,
],
[
- "Wallet Management",
+ "API Client",
+ "Fully-Typed",
,
,
,
@@ -189,12 +192,16 @@ Turnkey also has several [wrappers for popular web3 libraries](https://docs.turn
"",
],
[
- "Policy Management",
- ,
+ {
+ text: "Secure Enclave Channels",
+ url: "https://docs.turnkey.com/security/enclave-secure-channels",
+ },
+ "HPKE",
,
,
"",
"",
+ "",
],
]}
/>
diff --git a/src/components/table/table.css b/src/components/table/table.css
index 0326d2bc..0e75fbb0 100644
--- a/src/components/table/table.css
+++ b/src/components/table/table.css
@@ -39,6 +39,10 @@
width: 10rem;
}
+.column-headings > .column-heading.server:nth-child(2) {
+ width: 10rem;
+}
+
.column-headings > .column-heading:last-child {
border-right: none;
}
@@ -83,7 +87,7 @@
.table-row > .table-cell.server:nth-child(2) {
padding-left: 0.5rem;
- width: 7rem;
+ width: 10rem;
border-left: 1px solid var(--tk-border-gray-100);
}
@@ -93,7 +97,7 @@
align-items: center;
}
-.table-row > .table-cell.server:nth-child(n + 2) {
+.table-row > .table-cell.server:nth-child(n + 3) {
display: flex;
justify-content: center;
align-items: center;
diff --git a/src/components/table/table.js b/src/components/table/table.js
index 0a0755d5..7d9166e3 100644
--- a/src/components/table/table.js
+++ b/src/components/table/table.js
@@ -23,7 +23,7 @@ export default function Table({ referenceType, columnHeadings, tableRows }) {
{tableRow.map((row, rowIndex) => {
return (
);
})}