Skip to content

Commit da21a81

Browse files
authored
feat: swap out assets for new icons (#39)
1 parent a6de560 commit da21a81

File tree

7 files changed

+6
-387
lines changed

7 files changed

+6
-387
lines changed

src/components/HomepageFeatures/index.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ import styles from './styles.module.css';
55

66
type FeatureItem = {
77
title: string;
8-
Svg: React.ComponentType<React.ComponentProps<'svg'>>;
8+
img: string;
99
description: ReactNode;
1010
};
1111

1212
const FeatureList: FeatureItem[] = [
1313
{
1414
title: 'Laravel/PHP Packages',
15-
Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default,
15+
img: require('@site/static/img/laravel-php-transparent.png').default,
1616
description: (
1717
<>
1818
We've crafted a suite of robust helper packages for our Laravel/PHP projects, simplifying everything from SOAP clients to validation wrappers, all designed to elevate your development experience.
@@ -21,7 +21,7 @@ const FeatureList: FeatureItem[] = [
2121
},
2222
{
2323
title: 'GitHub Actions',
24-
Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default,
24+
img: require('@site/static/img/deployment-transparent.png').default,
2525
description: (
2626
<>
2727
GitHub is at the core of our deployment strategies. We've tailored solutions using AWS CodeDeploy and ECS, filling gaps that existing tools left behind, ensuring a seamless deployment process.
@@ -30,7 +30,7 @@ const FeatureList: FeatureItem[] = [
3030
},
3131
{
3232
title: 'React Native',
33-
Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
33+
img: require('@site/static/img/react-native-transparent.png').default,
3434
description: (
3535
<>
3636
Our expertise in React Native is reflected in the apps we've developed for our clients. Along the way, we've revived and released open-source projects to contribute back to the community.
@@ -39,11 +39,11 @@ const FeatureList: FeatureItem[] = [
3939
},
4040
];
4141

42-
function Feature({title, Svg, description}: FeatureItem) {
42+
function Feature({title, img, description}: FeatureItem) {
4343
return (
4444
<div className={clsx('col col--4')}>
4545
<div className="text--center">
46-
<Svg className={styles.featureSvg} role="img" />
46+
<img src={img} role="img" />
4747
</div>
4848
<div className="text--center padding-horiz--md">
4949
<Heading as="h3">{title}</Heading>
589 KB
Loading
483 KB
Loading
283 KB
Loading

static/img/undraw_docusaurus_mountain.svg

Lines changed: 0 additions & 171 deletions
This file was deleted.

static/img/undraw_docusaurus_react.svg

Lines changed: 0 additions & 170 deletions
This file was deleted.

static/img/undraw_docusaurus_tree.svg

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)