Skip to content

Commit c257b22

Browse files
authored
Landing page redesign and RPC documentation updates (#780)
* logo-change-top * removed starknetRPC * without-scroll-request * banner * banner added * background-effect * terminal added to hero * banner fix * fixed introduction section * Add complete documentation for core Starknet JSON-RPC API methods including: - Block methods: BlockNumber, BlockHashAndNumber, BlockWithTxs, BlockWithTxHashes, BlockWithReceipts, BlockTransactionCount - Transaction methods: TransactionByHash, TransactionReceipt, GetTransactionStatus, TransactionByBlockIdAndIndex, GetMessagesStatus - Chain methods: ChainID, SpecVersion, Syncing - Events: Events with comprehensive filtering support - Debug & Tracing: TraceTransaction, TraceBlockTransactions, SimulateTransactions Each method includes: - Complete method signatures and parameters - Working code examples with real outputs - Detailed field explanations - Use cases and error handling - Consistent formatting following established patterns All examples tested against Starknet Sepolia testnet using starknet.go v0.14.0 * landing page revamp * landing page fixes * fixes to CTA button * rename www to docs * vercel dead links error * doc icon deployment fix * gopher animation - star cut fix * Fix gopher animation positioning and update footer links - Adjust gopher animation container size for better visual balance - Reposition star animations to better align with gopher - Add target="_blank" and rel="noopener noreferrer" to footer links for security - Update React type definitions and dependencies - Clean up chain-ID documentation formatting
1 parent 7433aa3 commit c257b22

File tree

248 files changed

+12890
-48264
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

248 files changed

+12890
-48264
lines changed

.DS_Store

6 KB
Binary file not shown.
File renamed without changes.

docs/CONTRIBUTING.md

Lines changed: 0 additions & 55 deletions
This file was deleted.
File renamed without changes.

docs/developers.md

Lines changed: 0 additions & 102 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.

www/docs/components/Fade.tsx renamed to docs/docs/components/Fade.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ const item = {
1616
hidden: {
1717
opacity: 0,
1818
y: 16,
19-
filter: "blur(4px)",
19+
// filter: "blur(4px)", // This is correct
2020
},
2121
show: {
2222
opacity: 1,
2323
scale: 1,
2424
y: 0,
25-
filter: "blur(0px)",
25+
// filter: "blur(0px)", // Make sure this has 'px'
2626
transition: {
2727
type: "spring",
2828
stiffness: 150,
Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import Banner from "./ui/Banner"
12
import { CallToAction } from "./ui/CallToAction"
23
import FeatureDivider from "./ui/FeatureDivider"
34
import Features from "./ui/Features"
@@ -10,29 +11,29 @@ import Testimonial from "./ui/Testimonial"
1011
export default function Home() {
1112
return (
1213
<main className="relative mx-auto flex flex-col w-full">
13-
<div className="pt-56">
14+
<Banner/>
1415
<Hero />
15-
</div>
16-
<div className="mt-52 px-4 xl:px-0">
16+
17+
{/* <div className="mt-52 px-4 xl:px-0">
1718
<Features />
1819
</div>
1920
{/* <div className="mt-32 px-4 xl:px-0">
2021
<Testimonial />
2122
</div> */}
22-
<FeatureDivider className="my-16 max-w-6xl" />
23-
<div className="px-4 xl:px-0">
23+
{/* <FeatureDivider className="my-16 max-w-6xl" /> */}
24+
{/* <div className="px-4 xl:px-0">
2425
<Map />
25-
</div>
26-
<FeatureDivider className="my-16 max-w-6xl" />
27-
<div className="mt-12 mb-40 px-4 xl:px-0">
26+
</div> */}
27+
{/* <FeatureDivider className="my-16 max-w-6xl" /> */}
28+
{/* <div className="mt-12 mb-40 px-4 xl:px-0">
2829
<SolarAnalytics />
29-
</div>
30-
<div className="mt-10 mb-40 px-4 xl:px-0">
30+
</div> */}
31+
{/* <div className="mt-10 mb-40 px-4 xl:px-0">
3132
<CallToAction />
32-
</div>
33-
<div className="mt-10 mb-40 px-4 xl:px-0">
33+
</div> */}
34+
{/* <div className="mt-10 mb-40 px-4 xl:px-0">
3435
<Footer />
35-
</div>
36+
</div> */}
3637
</main>
3738
)
3839
}

0 commit comments

Comments
 (0)