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,21 @@
import CardContainer from "./CardContainer";
const ResultsPage = () => {
return (
<div className="header-text">
<h1>
<span className="bg-clip-text text-transparent bg-gradient-to-br from-gold-light to-gold-dark">
"
</span>
Ok... So what makes <br />
us different?
<span className="bg-clip-text text-transparent bg-gradient-to-br from-gold-light to-gold-dark">
"
</span>
</h1>
<CardContainer />
</div>
);
};
export default ResultsPage;