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

Commit ad63459

Browse files
committed
updated images
1 parent e311f1b commit ad63459

File tree

13 files changed

+743
-289
lines changed

13 files changed

+743
-289
lines changed

src/_pages/LandingPage/components/OtherFeaturesView/components/Cards/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const Cards: React.FC<Props> = (props) => {
1818
const startIndex =
1919
props.startIndex && props.startIndex < cards.length
2020
? props.startIndex
21-
: Math.round(cards.length / 2);
21+
: Math.floor(cards.length / 2);
2222
const { windowWidth } = useWindowSize();
2323
const [index, setIndex] = useState(startIndex);
2424
const [cardDimensions] = useState<{ width: number; height: number }>({

src/_pages/LandingPage/components/OtherFeaturesView/index.tsx

+13-6
Original file line numberDiff line numberDiff line change
@@ -8,28 +8,35 @@ const cards: CardInterface[] = [
88
description:
99
'AgileTs allows you to manage all your application logic and states outside of any UI framework in a central place.',
1010
to: 'docs/introduction',
11-
imagePath: 'img/pages/centralize.svg',
11+
imagePath: 'img/pages/landing/software_engineer.svg',
1212
},
1313
{
1414
title: 'Flexible',
1515
description:
16-
'AgileTs works with any UI-Layer and isn’t bound to any specific workflow. Use it the way it suits you best.',
16+
'AgileTs works with nearly any UI-Layer and isn’t bound to any specific workflow. Use it the way it suits you best.',
1717
to: 'docs/introduction',
18-
imagePath: 'img/pages/flexible.svg',
18+
imagePath: 'img/pages/landing/teaching.svg',
1919
},
2020
{
2121
title: 'Easy to Use',
2222
description:
2323
'Learn the powerful tools of AgileTs in a short amount of time.',
2424
to: 'docs/introduction',
25-
imagePath: 'img/pages/easy_to_use.svg',
25+
imagePath: 'img/pages/landing/science.svg',
2626
},
2727
{
2828
title: 'Well Tested',
2929
description:
30-
'We spend much time to test AgileTs, to ensure it works to 99%.',
30+
'AgileTs has over 1000 jest tests to ensure everything works as expected.',
3131
to: 'docs/introduction',
32-
imagePath: 'img/docs/logger_example.png',
32+
imagePath: 'img/pages/landing/engineer.svg',
33+
},
34+
{
35+
title: 'Typescript',
36+
description:
37+
'AgileTs is almost 100% typesafe and offers type inference for any complex structure.',
38+
to: 'docs/introduction',
39+
imagePath: 'img/pages/landing/typescript.svg',
3340
},
3441
];
3542

src/_pages/LandingPage/components/StraightforwardView/components/SectionScroller/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const SectionScroller: React.FC<Props> = (props) => {
2121
const startIndex =
2222
props.startIndex && props.startIndex < sections.length
2323
? props.startIndex
24-
: Math.round(sections.length / 2);
24+
: Math.floor(sections.length / 2);
2525
const { windowWidth } = useWindowSize();
2626
const sectionContainerRef = useRef(null);
2727
const [showTopChevron, setShowTopChevron] = useState(false);

static/img/pages/centralize.svg

-119
This file was deleted.

static/img/pages/easy_to_use.svg

-97
This file was deleted.

0 commit comments

Comments
 (0)