first homepage push
This commit is contained in:
parent
1d17580817
commit
a42fd4c8f9
11 changed files with 319 additions and 6 deletions
15
src/components/ServicesCard.jsx
Normal file
15
src/components/ServicesCard.jsx
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import React from 'react';
|
||||
import '../scss/components/ServicesCard.scss';
|
||||
|
||||
function ServiceCard({ icon, title, desc, cta }) {
|
||||
return (
|
||||
<div className="service-card">
|
||||
<div className="icon">{icon}</div>
|
||||
<h3>{title}</h3>
|
||||
<p>{desc}</p>
|
||||
<a href="#" className="link">{cta} →</a>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default ServiceCard;
|
||||
Loading…
Add table
Add a link
Reference in a new issue