Results Page + Contacts

This commit is contained in:
2024-06-08 02:41:54 +01:00
parent cc73a8e3da
commit 601d5ac89d
23 changed files with 277 additions and 81 deletions
@@ -0,0 +1,18 @@
import Card from "./ServiceCard";
import AlgorithmImg from "../../../assets/imgs/Algorithm.jpg";
import ScheduleImg from "../../../assets/imgs/Schedule.jpg";
import TargetImg from "../../../assets/imgs/Target.jpg";
import ExpandImg from "../../../assets/imgs/Expand.jpg";
const SocialMediaCards = () => {
return (
<div className="h-full flex lg:mt-20 flex-col flex-wrap gap-4 xl:flex-row mx-4">
<Card title="Algorithm" description="Analise" imgSrc={AlgorithmImg} />
<Card title="Schedule" description="Content" imgSrc={ScheduleImg} />
<Card title="Target" description="Audience" imgSrc={TargetImg} />
<Card title="Expand" description="Platforms" imgSrc={ExpandImg} />
</div>
);
};
export default SocialMediaCards;