Skip to content

Commit 38f778a

Browse files
committed
Homepage improvemetns
1 parent 8094674 commit 38f778a

File tree

5 files changed

+219
-7
lines changed

5 files changed

+219
-7
lines changed

website/src/components/HomepageFeatures/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ type FeatureItem = {
1212
const FeatureList: FeatureItem[] = [
1313
{
1414
title: 'The Problem',
15-
Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default,
15+
Svg: require('@site/static/img/radar-problem.svg').default,
1616
description: (
1717
<>
1818
Claude Code windows get buried in tabs, suspended with Ctrl+Z, or hidden in background terminals.
@@ -22,7 +22,7 @@ const FeatureList: FeatureItem[] = [
2222
},
2323
{
2424
title: 'The Solution',
25-
Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default,
25+
Svg: require('@site/static/img/radar-solution.svg').default,
2626
description: (
2727
<>
2828
A live dashboard showing every Claude session with context: which project, which terminal,
@@ -32,7 +32,7 @@ const FeatureList: FeatureItem[] = [
3232
},
3333
{
3434
title: 'How It Works',
35-
Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
35+
Svg: require('@site/static/img/radar-how-it-works.svg').default,
3636
description: (
3737
<>
3838
Uses Claude's plugin hooks to capture sessions as they start/end and track their activity.

website/src/pages/index.tsx

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,22 @@ function HomepageHeader() {
2121
<p className="hero__subtitle">
2222
So I built a dashboard to track them all
2323
</p>
24-
<div style={{marginTop: '2rem', maxWidth: '900px', margin: '2rem auto'}}>
25-
<div style={{marginBottom: '2rem'}}>
24+
<div style={{marginTop: '2rem', maxWidth: '1200px', margin: '2rem auto'}}>
25+
<div style={{marginBottom: '2rem', position: 'relative'}}>
2626
<video
27+
controls
2728
autoPlay
2829
loop
2930
muted
3031
playsInline
32+
controlsList="nodownload"
3133
style={{
3234
width: '100%',
33-
maxWidth: '800px',
35+
maxWidth: '1100px',
3436
borderRadius: '8px',
35-
boxShadow: '0 4px 6px rgba(0, 0, 0, 0.1)'
37+
boxShadow: '0 4px 6px rgba(0, 0, 0, 0.1)',
38+
display: 'block',
39+
margin: '0 auto'
3640
}}
3741
>
3842
<source src={videoUrl} type="video/mp4" />
Lines changed: 94 additions & 0 deletions
Loading
Lines changed: 43 additions & 0 deletions
Loading
Lines changed: 71 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)