Skip to content

Commit 0136f5d

Browse files
author
Divya Bhushan
authored
Merge pull request #955 from PaloAltoNetworks/landing-page-link
Update links on the Prisma AIRS landing page
2 parents dba65e0 + ec47109 commit 0136f5d

1 file changed

Lines changed: 44 additions & 9 deletions

File tree

src/pages/airs/index.js

Lines changed: 44 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -192,10 +192,11 @@ function MainContent() {
192192
maxWidth: 820,
193193
}}
194194
>
195-
Prisma AIRS API Intercept is Palo Alto Networks’ API for
196-
securing AI applications and agents. Instantly protect your
197-
models from prompt injection, data leaks, and unsafe outputs—so
198-
you can build and deploy AI with confidence.
195+
Prisma AIRS AI Runtime: API Intercept is Palo Alto Networks’ API
196+
for securing AI applications, AI models, AI data, and AI agents.
197+
Instantly protect your models from prompt injection, data leaks,
198+
and unsafe outputs—so you can build and deploy AI with
199+
confidence.
199200
</p>
200201
</div>
201202
<CodeBlock language="python">
@@ -308,7 +309,7 @@ print(res)
308309
fontWeight: 700,
309310
}}
310311
>
311-
Prisma AIRS Scan API Python SDK
312+
Prisma AIRS AI Runtime API Python SDK
312313
</span>
313314
}
314315
colorMode={colorMode}
@@ -348,15 +349,49 @@ print(res)
348349
</a>
349350
</Card>
350351
<Card
351-
title="API Reference"
352-
link="/prisma-airs/api/airuntimesecurity/prisma-airs-api/"
353-
linkLabel="Full API Reference"
352+
title={
353+
<span
354+
style={{
355+
color: colorMode === "dark" ? "#fff" : "#7c3aed",
356+
fontWeight: 700,
357+
}}
358+
>
359+
API Reference Guide
360+
</span>
361+
}
354362
colorMode={colorMode}
363+
style={{
364+
background: colorMode === "dark" ? "#232237" : "#f7f5ff",
365+
border:
366+
colorMode === "dark"
367+
? "1px solid #333a48"
368+
: "1px solid #e0e7ef",
369+
borderRadius: 20,
370+
boxShadow:
371+
colorMode === "dark"
372+
? "0 2px 12px 0 rgba(124,58,237,0.10)"
373+
: "0 2px 12px 0 rgba(124,58,237,0.04)",
374+
padding: 32,
375+
color: colorMode === "dark" ? "#fff" : "#232237",
376+
fontSize: 18,
377+
minHeight: 180,
378+
display: "flex",
379+
flexDirection: "column",
380+
alignItems: "flex-start",
381+
justifyContent: "flex-start",
382+
}}
355383
>
356-
<div>
384+
<div style={{ marginBottom: 16 }}>
357385
Full API documentation with endpoint details, request/response
358386
formats, authentication, error codes, and code samples.
359387
</div>
388+
<a
389+
href="/prisma-airs/scan/api/"
390+
className={styles.button}
391+
target="_self"
392+
>
393+
View API Reference Docs
394+
</a>
360395
</Card>
361396
<Card
362397
title="Getting Started"

0 commit comments

Comments
 (0)