22 lines
535 B
TypeScript
22 lines
535 B
TypeScript
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;
|