11import React from 'react' ;
22import { useNavigate } from 'react-router-dom' ;
33import PageLayout from '../components/PageLayout' ;
4+ import './TokenPage.css' ; // Use TokenPage styles for consistent formatting
45import '../styles/app-dark.css' ;
56import '../styles/mobile.css' ;
67
@@ -18,7 +19,8 @@ const BitcoinSpreadsheetsPage: React.FC = () => {
1819
1920 return (
2021 < PageLayout title = "Bitcoin Spreadsheets" >
21- < div className = "bitcoin-spreadsheet-page" >
22+ < div className = "token-page" >
23+ < div className = "token-container" >
2224 { /* Hero Section */ }
2325 < section className = "hero-section" >
2426 < div className = "hero-content" >
@@ -49,19 +51,19 @@ const BitcoinSpreadsheetsPage: React.FC = () => {
4951 </ section >
5052
5153 { /* Revolutionary Infrastructure */ }
52- < section className = "infrastructure -section" >
53- < div className = "container" >
54- < h2 className = "section-title" > Revolutionary Infrastructure </ h2 >
55- < div className = "infrastructure-grid " >
56- < div className = "infrastructure-item " >
54+ < section className = "philosophy -section" >
55+ < h2 > Revolutionary Infrastructure </ h2 >
56+ < div className = "philosophy-content" >
57+ < div className = "philosophy-points " >
58+ < div className = "point " >
5759 < h3 > Decentralized Storage</ h3 >
5860 < p > Every spreadsheet stored permanently on Bitcoin blockchain - no servers, no downtime, no corporate control.</ p >
5961 </ div >
60- < div className = "infrastructure-item " >
62+ < div className = "point " >
6163 < h3 > Native Tokenization</ h3 >
6264 < p > Transform any spreadsheet into tradeable shares with built-in dividend distribution and marketplace integration.</ p >
6365 </ div >
64- < div className = "infrastructure-item " >
66+ < div className = "point " >
6567 < h3 > Financial Primitives</ h3 >
6668 < p > Built-in micropayment rails, subscription models, and economic incentives for data creators and consumers.</ p >
6769 </ div >
@@ -70,37 +72,37 @@ const BitcoinSpreadsheetsPage: React.FC = () => {
7072 </ section >
7173
7274 { /* Core Features Section */ }
73- < section className = "features-section" >
74- < div className = "container" >
75- < h2 className = "section-title" > Core Features</ h2 >
76-
77- < div className = "feature-content" >
78- < div className = "feature-block" >
75+ < section className = "philosophy-section" >
76+ < h2 > Core Features</ h2 >
77+ < div className = "philosophy-content" >
78+ < p >
79+ Bitcoin Spreadsheets provides revolutionary infrastructure for blockchain-based data management with
80+ enterprise-grade security, tokenization capabilities, and economic primitives built for the future of data ownership.
81+ </ p >
82+ < div className = "philosophy-points" >
83+ < div className = "point" >
7984 < h3 > Blockchain Security</ h3 >
8085 < p > Every cell cryptographically secured on the Bitcoin SV blockchain with immutable audit trails and transparent ownership verification.</ p >
8186 </ div >
82-
83- < div className = "feature-block" >
87+ < div className = "point" >
8488 < h3 > Tokenization Engine</ h3 >
8589 < p > Convert spreadsheets, cells, and datasets into tradeable dividend-bearing shares with built-in fractional ownership and revenue distribution.</ p >
8690 </ div >
87-
88- < div className = "feature-block" >
91+ < div className = "point" >
8992 < h3 > NFT Storage</ h3 >
9093 < p > Save your spreadsheets as permanent, immutable NFTs with fractional ownership capabilities and marketplace integration.</ p >
9194 </ div >
92-
93- < div className = "feature-block" >
95+ </ div >
96+ < div className = "philosophy-points" >
97+ < div className = "point" >
9498 < h3 > HandCash Integration</ h3 >
9599 < p > Seamless authentication and instant micropayments with HandCash wallet for streamlined user experience.</ p >
96100 </ div >
97-
98- < div className = "feature-block" >
101+ < div className = "point" >
99102 < h3 > Real-time Collaboration</ h3 >
100103 < p > Share spreadsheet ownership and collaborate with transparent on-chain tracking and distributed permissions management.</ p >
101104 </ div >
102-
103- < div className = "feature-block" >
105+ < div className = "point" >
104106 < h3 > Economic Primitives</ h3 >
105107 < p > Earn from your data with dynamic pricing models, subscription services, and automated dividend distribution systems.</ p >
106108 </ div >
@@ -109,57 +111,49 @@ const BitcoinSpreadsheetsPage: React.FC = () => {
109111 </ section >
110112
111113 { /* Tokenization Section */ }
112- < section className = "tokenization-section" >
113- < div className = "container" >
114- < div className = "tokenization-content" >
115- < div className = "tokenization-text" >
116- < h2 className = "section-title" > Own The Data Economy</ h2 >
117- < p className = "section-description" >
118- Bitcoin Spreadsheets operates as an independent business with its own
119- dividend-bearing shares ($bSheets). Every spreadsheet can be tokenized
120- into millions of tradeable shares with transparent on-chain ownership.
121- </ p >
122- < div className = "protocols-list" >
123- < h4 > Supported Token Protocols:</ h4 >
124- { protocols . map ( ( protocol , index ) => (
125- < div key = { index } className = "protocol-item" >
126- < span className = "protocol-name" > { protocol . name } </ span >
127- < span className = "protocol-desc" > { protocol . description } </ span >
128- </ div >
129- ) ) }
130- </ div >
131- </ div >
132- < div className = "tokenization-visual" >
133- < div className = "token-card" >
134- < div className = "token-header" >
135- < span className = "token-label" > $bSheets</ span >
136- < span className = "token-badge" > 📊</ span >
137- </ div >
138- < div className = "token-stats" >
139- < div className = "stat" >
140- < span className = "stat-value" > 1M</ span >
141- < span className = "stat-label" > Total Shares</ span >
142- </ div >
143- < div className = "stat" >
144- < span className = "stat-value" > 2,500</ span >
145- < span className = "stat-label" > Holders</ span >
146- </ div >
147- < div className = "stat" >
148- < span className = "stat-value" > ₿5.2</ span >
149- < span className = "stat-label" > Market Cap</ span >
150- </ div >
151- </ div >
152- </ div >
153- </ div >
154- </ div >
114+ < section className = "token-model-section" >
115+ < h2 > Own The Data Economy</ h2 >
116+ < div className = "model-card" >
117+ < h3 > $bSheets Token Model</ h3 >
118+ < p >
119+ Bitcoin Spreadsheets operates as an independent business with its own
120+ dividend-bearing shares ($bSheets). Every spreadsheet can be tokenized
121+ into millions of tradeable shares with transparent on-chain ownership.
122+ </ p >
123+ < ul >
124+ < li >
125+ < strong > Token Supply:</ strong > 1,000,000,000 total $bSheets tokens with controlled distribution
126+ </ li >
127+ < li >
128+ < strong > Revenue Sharing:</ strong > Dividend-bearing shares with transparent profit distribution
129+ </ li >
130+ < li >
131+ < strong > Marketplace Integration:</ strong > Trade spreadsheet ownership fractions seamlessly
132+ </ li >
133+ < li >
134+ < strong > On-Chain Governance:</ strong > Token holders participate in platform development decisions
135+ </ li >
136+ </ ul >
137+ </ div >
138+
139+ < div className = "model-card" >
140+ < h3 > Supported Token Protocols</ h3 >
141+ < ul >
142+ { protocols . map ( ( protocol , index ) => (
143+ < li key = { index } >
144+ < strong > { protocol . name } :</ strong > { protocol . description }
145+ </ li >
146+ ) ) }
147+ </ ul >
155148 </ div >
156149 </ section >
157150
158151 { /* Marketplace Preview */ }
159- < section className = "marketplace-section" >
160- < div className = "container" >
161- < h2 className = "section-title" > Spreadsheet Marketplace</ h2 >
162- < p className = "section-description" >
152+ < section className = "token-model-section" >
153+ < h2 > Spreadsheet Marketplace</ h2 >
154+ < div className = "model-card" >
155+ < h3 > Trade Dataset Shares</ h3 >
156+ < p >
163157 Buy, sell, and trade shares in valuable datasets. Each spreadsheet operates
164158 as its own micro-business with transparent revenue sharing.
165159 </ p >
@@ -199,69 +193,41 @@ const BitcoinSpreadsheetsPage: React.FC = () => {
199193 </ section >
200194
201195 { /* Pricing Section */ }
202- < section className = "pricing-section" >
203- < div className = "container" >
204- < h2 className = "section-title" > Simple, Transparent Economics</ h2 >
205- < p className = "section-description" >
206- Built on micropayment infrastructure with fair value distribution
207- </ p >
208- < div className = "pricing-cards" >
209- < div className = "pricing-card" >
210- < h3 className = "pricing-title" > Storage</ h3 >
211- < div className = "pricing-amount" >
212- < span className = "pricing-value" > $0.000001</ span >
213- < span className = "pricing-unit" > per cell</ span >
214- </ div >
215- < p className = "pricing-detail" > Permanent blockchain storage</ p >
216- </ div >
217- < div className = "pricing-card featured" >
218- < div className = "featured-badge" > EARN</ div >
219- < h3 className = "pricing-title" > Revenue Share</ h3 >
220- < div className = "pricing-amount" >
221- < span className = "pricing-value" > 80%</ span >
222- < span className = "pricing-unit" > to creators</ span >
223- </ div >
224- < p className = "pricing-detail" > Fair dividend distribution</ p >
225- </ div >
226- < div className = "pricing-card" >
227- < h3 className = "pricing-title" > Trading</ h3 >
228- < div className = "pricing-amount" >
229- < span className = "pricing-value" > 0.1%</ span >
230- < span className = "pricing-unit" > trading fee</ span >
231- </ div >
232- < p className = "pricing-detail" > Low-cost marketplace</ p >
233- </ div >
234- </ div >
196+ < section className = "token-model-section" >
197+ < h2 > Simple, Transparent Economics</ h2 >
198+ < div className = "model-card" >
199+ < h3 > Micropayment Infrastructure</ h3 >
200+ < p > Built on micropayment infrastructure with fair value distribution</ p >
201+ < ul >
202+ < li >
203+ < strong > Storage:</ strong > $0.000001 per cell - Permanent blockchain storage
204+ </ li >
205+ < li >
206+ < strong > Revenue Share:</ strong > 80% to creators - Fair dividend distribution
207+ </ li >
208+ < li >
209+ < strong > Trading:</ strong > 0.1% trading fee - Low-cost marketplace
210+ </ li >
211+ </ ul >
235212 </ div >
236213 </ section >
237214
238215 { /* Testimonials */ }
239- < section className = "testimonials-section" >
240- < div className = "container" >
241- < h2 className = "section-title" > Trusted by Innovators</ h2 >
242- < div className = "testimonials-grid" >
243- < div className = "testimonial-card" >
244- < p > "Finally, a spreadsheet platform where I actually own my financial models. The tokenization feature is revolutionary."</ p >
245- < div className = "testimonial-author" >
246- < strong > Sarah Chen</ strong >
247- < span > Financial Analyst</ span >
248- </ div >
249- </ div >
250- < div className = "testimonial-card" >
251- < p > "Earning passive income from my datasets while maintaining full ownership? This changes everything for data creators."</ p >
252- < div className = "testimonial-author" >
253- < strong > Alex Rodriguez</ strong >
254- < span > Data Scientist</ span >
255- </ div >
256- </ div >
257- < div className = "testimonial-card" >
258- < p > "The immutable audit trail gives our clients complete confidence in our financial reporting."</ p >
259- < div className = "testimonial-author" >
260- < strong > Maria Johnson</ strong >
261- < span > Accounting Firm Owner</ span >
262- </ div >
263- </ div >
264- </ div >
216+ < section className = "token-model-section" >
217+ < h2 > Trusted by Innovators</ h2 >
218+ < div className = "model-card" >
219+ < h3 > User Testimonials</ h3 >
220+ < ul >
221+ < li >
222+ < strong > Sarah Chen, Financial Analyst:</ strong > "Finally, a spreadsheet platform where I actually own my financial models. The tokenization feature is revolutionary."
223+ </ li >
224+ < li >
225+ < strong > Alex Rodriguez, Data Scientist:</ strong > "Earning passive income from my datasets while maintaining full ownership? This changes everything for data creators."
226+ </ li >
227+ < li >
228+ < strong > Maria Johnson, Accounting Firm Owner:</ strong > "The immutable audit trail gives our clients complete confidence in our financial reporting."
229+ </ li >
230+ </ ul >
265231 </ div >
266232 </ section >
267233
@@ -309,6 +275,7 @@ const BitcoinSpreadsheetsPage: React.FC = () => {
309275 </ div >
310276 </ div >
311277 </ footer >
278+ </ div >
312279 </ div >
313280 </ PageLayout >
314281 ) ;
0 commit comments