-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add/improve language around safety and privacy
- Loading branch information
Showing
5 changed files
with
63 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import { Shield } from 'lucide-react' | ||
|
||
export default function SecurityPrivacy() { | ||
const securityItems = [ | ||
"Users are responsible for securing their API key in the $HOME/abc.conf file", | ||
"abc communicates directly with your chosen AI LLM API provider (e.g., Anthropic)", | ||
"Review the LLM provider's privacy policy for data handling practices" | ||
] | ||
|
||
return ( | ||
<section className="space-y-6 bg-white rounded-xl shadow-lg p-8 transition-all duration-300 hover:shadow-xl"> | ||
<h2 className="text-4xl font-bold text-gray-800 border-b pb-4">Security & Privacy</h2> | ||
<div className="space-y-6"> | ||
<ul className="space-y-4"> | ||
{securityItems.map((item, index) => ( | ||
<li key={index} className="flex items-start space-x-3"> | ||
<Shield className="w-6 h-6 text-blue-500 flex-shrink-0 mt-1" /> | ||
<span className="text-gray-700">{item}</span> | ||
</li> | ||
))} | ||
</ul> | ||
<div className="pt-4 border-t"> | ||
<h3 className="text-xl font-semibold text-gray-800 mb-3">LLM API Providers</h3> | ||
<ul className="list-disc pl-6 space-y-2"> | ||
<li> | ||
<a | ||
href="https://www.anthropic.com/privacy" | ||
className="text-blue-600 hover:text-blue-800 hover:underline" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
Anthropic Privacy Policy | ||
</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</section> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters