STARK Way of Building
+ + ++ Starknet uses the Cairo programming language both for its infrastructure and for writing Starknet + contracts. L2 <--> L1 messaging infrastructure is available and contracts are fully composable. +
+ > + ) +} diff --git a/apps/doc/src/components/DashboardTitle/styles.module.css b/apps/doc/src/components/DashboardTitle/styles.module.css new file mode 100644 index 0000000..b7faba7 --- /dev/null +++ b/apps/doc/src/components/DashboardTitle/styles.module.css @@ -0,0 +1,10 @@ +.title { + font-weight: 700; + font-size: 48px; + line-height: 130%; + margin-top: 10px !important; +} + +.orangeTitle { + color: #EF740E; +} diff --git a/apps/doc/src/components/HomepageFeatures/index.tsx b/apps/doc/src/components/HomepageFeatures/index.tsx new file mode 100644 index 0000000..fac298d --- /dev/null +++ b/apps/doc/src/components/HomepageFeatures/index.tsx @@ -0,0 +1,118 @@ +import React from 'react'; +import Link from '@docusaurus/Link'; +import clsx from 'clsx'; +import styles from './styles.module.css'; + +type FeatureItem = { + title: string; + imgUrl: string; + description: JSX.Element; +}; + +const FeatureList: FeatureItem[] = [ + { + title: 'Account Abstraction', + imgUrl: require('@site/static/img/home_feature_item1.png').default, + description: ( + <> + Introduce you to account abstraction on Starknet. + > + ), + }, + { + title: 'Cairo Lang', + imgUrl: require('@site/static/img/home_feature_item2.png').default, + description: ( + <> + Teach you to write a NFT contract in cairo. + > + ), + }, + { + title: 'Starknet Dapp', + imgUrl: require('@site/static/img/home_feature_item3.png').default, + description: ( + <> + Build a simple NFT minting Dapp on Starknet. + > + ), + }, +]; + + +function Feature({title, imgUrl, description}: FeatureItem) { + return ( +{description}
+Starknet is a permissionless decentralized Validity-Rollup (often referred to as ZK-Rollup). It operates as an L2 network over Ethereum, enabling any dApp to achieve unlimited scale for its computation – without compromising Ethereum's composability and security.
+ + https://starknet.io +{siteConfig.tagline}
+