@@ -14,6 +14,7 @@ import '../shared/components/gitlens-logo';
1414import { welcomeStyles } from './welcome.css' ;
1515import './components/feature-carousel' ;
1616import './components/feature-card' ;
17+ import './components/feature-narrow-card' ;
1718
1819@customElement ( 'gl-welcome-app' )
1920export class GlWelcomeApp extends GlAppHost < State > {
@@ -84,8 +85,79 @@ export class GlWelcomeApp extends GlAppHost<State> {
8485 < gl-button @click =${ ( ) => this . onStartTrial ( ) } > Start GitLens Pro Trial</ gl-button >
8586 </ div >
8687
87- < div >
88- < p > GitLens ${ this . state ?. version ?? '' } is ready to use!</ p >
88+ < div class ="section plain ">
89+ < h2 > You also get these free features</ h2 >
90+ </ div >
91+
92+ < div class ="section ">
93+ < gl-scrollable-features >
94+ < gl-feature-narrow-card class ="card ">
95+ < img
96+ src ="${ this . webroot ?? '' } /media/feature-graph.webp "
97+ alt ="Commit Graph "
98+ width ="100 "
99+ height ="100 "
100+ />
101+ < h1 > Commit Graph</ h1 >
102+ < p > Visualize your repository's history and interact with commits</ p >
103+ < p > < a href ="command:gitlens.showGraph "> Open Commit Graph</ a > </ p >
104+ </ gl-feature-narrow-card >
105+ < gl-feature-narrow-card class ="card ">
106+ < img
107+ src ="${ this . webroot ?? '' } /media/feature-timeline.webp "
108+ alt ="Visual File History "
109+ width ="32 "
110+ height ="32 "
111+ />
112+ < h1 > Visual File History</ h1 >
113+ < p > Track changes to any file over time</ p >
114+ < p > < a href ="command:gitlens.showTimelineView "> Open Visual File History</ a > </ p >
115+ </ gl-feature-narrow-card >
116+ < gl-feature-narrow-card class ="card ">
117+ < img
118+ src ="${ this . webroot ?? '' } /media/feature-graph.webp "
119+ alt ="Commit Graph "
120+ width ="100 "
121+ height ="100 "
122+ />
123+ < h1 > Commit Graph</ h1 >
124+ < p > Visualize your repository's history and interact with commits</ p >
125+ < p > < a href ="command:gitlens.showGraph "> Open Commit Graph</ a > </ p >
126+ </ gl-feature-narrow-card >
127+ < gl-feature-narrow-card class ="card ">
128+ < img
129+ src ="${ this . webroot ?? '' } /media/feature-timeline.webp "
130+ alt ="Visual File History "
131+ width ="32 "
132+ height ="32 "
133+ />
134+ < h1 > Visual File History</ h1 >
135+ < p > Track changes to any file over time</ p >
136+ < p > < a href ="command:gitlens.showTimelineView "> Open Visual File History</ a > </ p >
137+ </ gl-feature-narrow-card >
138+ < gl-feature-narrow-card class ="card ">
139+ < img
140+ src ="${ this . webroot ?? '' } /media/feature-graph.webp "
141+ alt ="Commit Graph "
142+ width ="100 "
143+ height ="100 "
144+ />
145+ < h1 > Commit Graph</ h1 >
146+ < p > Visualize your repository's history and interact with commits</ p >
147+ < p > < a href ="command:gitlens.showGraph "> Open Commit Graph</ a > </ p >
148+ </ gl-feature-narrow-card >
149+ < gl-feature-narrow-card class ="card ">
150+ < img
151+ src ="${ this . webroot ?? '' } /media/feature-timeline.webp "
152+ alt ="Visual File History "
153+ width ="32 "
154+ height ="32 "
155+ />
156+ < h1 > Visual File History</ h1 >
157+ < p > Track changes to any file over time</ p >
158+ < p > < a href ="command:gitlens.showTimelineView "> Open Visual File History</ a > </ p >
159+ </ gl-feature-narrow-card >
160+ </ gl-scrollable-features >
89161 </ div >
90162 </ div >
91163 ` ;
0 commit comments