Results Page + Contacts
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
import Card from "./Card";
|
||||
|
||||
const CardContainer = () => {
|
||||
return (
|
||||
<div className="mt-10 flex-col h-full lg:grid lg:grid-cols-2 lg:gap-10 px-10 lg:px-40 2xl:px-96 1920:margin-calc">
|
||||
<Card
|
||||
title="GUARANTED"
|
||||
description={`We only win if you win!\nThat’s the basis for a good\npartnership.\nYou won’t carry all the risk,\nwe’ll share it.`}
|
||||
/>
|
||||
<Card
|
||||
title="RESULTS"
|
||||
description={`Our first priority is to get\nyou results.\n\nLess talk, more walk.`}
|
||||
/>
|
||||
<Card
|
||||
title="LOCAL"
|
||||
description={`We’re not a anonymous call\ncenter. We’re a local\ncompany, so you’ll be able to\nreach us when you need us`}
|
||||
/>
|
||||
<Card
|
||||
title="SPECIALIZED"
|
||||
description={`Jack of all trades... master\nof none Specialization\nworks. We work with\nindustries we know, so we\ncan guarantee results.`}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default CardContainer;
|
||||
Reference in New Issue
Block a user