Skip to content
This repository was archived by the owner on Feb 11, 2026. It is now read-only.

Commit e4ef25f

Browse files
author
Stanislav Pelak
committed
Slideshow copy & styling
1 parent c4e4673 commit e4ef25f

2 files changed

Lines changed: 28 additions & 13 deletions

File tree

src/components/HowItWorks/Slideshow.module.scss

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
display: flex;
102102
flex-direction: row;
103103
justify-content: center;
104-
align-items: center;
104+
align-items: flex-end;
105105

106106
.order {
107107
@include type-style("heading-05");
@@ -119,10 +119,6 @@
119119
word-break: auto-phrase;
120120
padding-right: 1rem;
121121
margin-right: auto;
122-
123-
@include breakpoint(xlg) {
124-
max-width: 50%;
125-
}
126122
}
127123
}
128124

src/components/HowItWorks/Slideshow.tsx

Lines changed: 27 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,26 +26,45 @@ const steps = [
2626
{
2727
animationSize: 400,
2828
animationName: 'detect-gap',
29-
description:
30-
'Experiment locally, on a quantized version of the latest InstructLab model, with adding new knowledge and skills.',
29+
description: (
30+
<>
31+
Experiment locally, on a quantized version of the latest InstructLab
32+
model, with adding new <strong>knowledge and skills</strong>
33+
</>
34+
),
3135
},
3236
{
3337
animationSize: 450,
3438
animationName: 'taxonomy',
35-
description:
36-
'Once a synthetic data recipe is ready, submit a pull request to contribute back to the InstructLab repository, which is organized in a structured taxonomy.',
39+
description: (
40+
<>
41+
Once a synthetic data recipe is ready, submit a pull request to
42+
contribute back to the InstructLab repository, which is organized in a
43+
structured <strong>taxonomy</strong>
44+
</>
45+
),
3746
},
3847
{
3948
animationSize: 320,
4049
animationName: 'synthetic-data',
41-
description:
42-
'InstructLab uses the new recipes to systematically generate synthetic data for the new capabilities - and this data is released to the community.',
50+
description: (
51+
<>
52+
InstructLab uses the new recipes to systematically generate{' '}
53+
<strong>synthetic data</strong> for the new capabilities - and this data
54+
is released to the community
55+
</>
56+
),
4357
},
4458
{
4559
animationSize: 400,
4660
animationName: 'fine-tune',
47-
description:
48-
'InstructLab merges the new skill back into the base model by updating it using all synthetic data generated to date, and releases a new model version to the community.',
61+
description: (
62+
<>
63+
InstructLab <strong>merges</strong> the new skill back into the base
64+
model by updating it using all synthetic data generated to date, and
65+
releases a new model version to the community
66+
</>
67+
),
4968
},
5069
];
5170

0 commit comments

Comments
 (0)