@@ -11,6 +11,7 @@ import { UnavailableAction } from '@/components/ui/unavailable-action';
1111import SectionHeading from '@/components/common/SectionHeading' ;
1212import CompactSectionSubtitle from '@/components/common/CompactSectionSubtitle' ;
1313import CreatorProfileInfoGrid from '@/components/common/CreatorProfileInfoGrid' ;
14+ import CreatorLabeledStatRow from '@/components/common/CreatorLabeledStatRow' ;
1415import MiniStatChip from '@/components/common/MiniStatChip' ;
1516import MarketplaceSection from '@/components/common/MarketplaceSection' ;
1617
@@ -28,6 +29,7 @@ const DEMO_CREATORS: Course[] = [
2829 title : 'Alex Rivers' ,
2930 description : 'Digital Artist & Illustrator' ,
3031 price : 0.05 ,
32+ creatorShareSupply : 120 ,
3133 instructorId : 'arivers' ,
3234 category : 'Art' ,
3335 level : 'BEGINNER' ,
@@ -40,6 +42,7 @@ const DEMO_CREATORS: Course[] = [
4042 title : 'Sarah Chen' ,
4143 description : 'Solidity Developer' ,
4244 price : 0.12 ,
45+ creatorShareSupply : 64 ,
4346 instructorId : 'schen_dev' ,
4447 category : 'Tech' ,
4548 level : 'ADVANCED' ,
@@ -52,6 +55,7 @@ const DEMO_CREATORS: Course[] = [
5255 title : 'Marcus Thorne' ,
5356 description : 'Crypto Strategist' ,
5457 price : 0.08 ,
58+ creatorShareSupply : 88 ,
5559 instructorId : 'mthorne' ,
5660 category : 'Finance' ,
5761 level : 'INTERMEDIATE' ,
@@ -64,6 +68,7 @@ const DEMO_CREATORS: Course[] = [
6468 title : 'Elena Vance' ,
6569 description : 'UI/UX Designer' ,
6670 price : 0.04 ,
71+ creatorShareSupply : 150 ,
6772 instructorId : 'evance_design' ,
6873 category : 'Design' ,
6974 level : 'BEGINNER' ,
@@ -76,6 +81,7 @@ const DEMO_CREATORS: Course[] = [
7681 title : 'David Kojo' ,
7782 description : 'Music Producer' ,
7883 price : 0.15 ,
84+ creatorShareSupply : 42 ,
7985 instructorId : 'dkojo_beats' ,
8086 category : 'Music' ,
8187 level : 'ADVANCED' ,
@@ -88,6 +94,7 @@ const DEMO_CREATORS: Course[] = [
8894 title : 'Yuki Sato' ,
8995 description : 'Motion Designer' ,
9096 price : 0.07 ,
97+ creatorShareSupply : 96 ,
9198 instructorId : 'yuki_s' ,
9299 category : 'Design' ,
93100 level : 'INTERMEDIATE' ,
@@ -246,7 +253,13 @@ function LandingPage() {
246253 < MiniStatChip label = "Access" value = "Member-first drops" />
247254 </ div >
248255 </ div >
249- < CreatorProfileInfoGrid items = { FEATURED_CREATOR_FACTS } />
256+ < div className = "space-y-3" >
257+ < CreatorProfileInfoGrid items = { FEATURED_CREATOR_FACTS } />
258+ < CreatorLabeledStatRow
259+ label = "Creator Share Supply"
260+ value = "250 shares available"
261+ />
262+ </ div >
250263 </ MarketplaceSection >
251264 </ div >
252265 </ main >
0 commit comments