Copilot commented on code in PR #27:
URL:
https://github.com/apache/incubator-teaclave-website/pull/27#discussion_r2209407058
##########
site/src/components/HomepageFeatures/index.js:
##########
@@ -0,0 +1,83 @@
+import clsx from 'clsx';
+import Heading from '@theme/Heading';
+import styles from './styles.module.css';
+
+const FeatureList = [
+ {
+ title: 'Secure and Attestable',
+ description: (
+ <>
+ Teaclave adopts multiple security technologies to enable secure
computing, in particular,
+ Teaclave uses Intel SGX to serve the most security-sensitive tasks
with hardware-based isolation, memory encryption and attestation.
+ Also, Teaclave is written in Rust to prevent memory-safety issues.
+ </>
+ ),
+ },
+ {
+ title: 'Function-as-a-Service',
+ description: (
+ <>
+ Teaclave is a function-as-a-service platform supporting tasks like
privacy-preserving machine learning, private set intersection, and crypto
computation.
+ In addition, developers can also write and execute Python function.
+ Teaclave supports both general secure computing tasks and flexible
multi-party secure computation.
+ </>
+ ),
+ },
+ {
+ title: 'Ease of Use',
+ description: (
+ <>
+ Teaclave builds its components in containers, therefore, it supports
deployment both locally and within cloud infrastructures.
+ Teaclave also provides convenient endpoint APIs, client SDKs and
command line tools.
+ </>
+ ),
+ },
+ {
+ title: 'Flexible',
+ description: (
+ <>
+ Components in Teaclave are designed in modular, and features like
remote attestation can be easily embedded in other projects.
+ In addition, Teaclave SGX SDK, Teaclave Java TEE SDK, and Teaclave
TrustZone SDK can also be used separately to write TEE apps for other purposes.
+ </>
+ ),
+ },
+];
+
+const featureStyle = {
Review Comment:
[nitpick] Styles for the features layout are defined both in CSS modules and
inline in JavaScript. Consider consolidating layout styles in the CSS module to
improve maintainability.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]