Remove gradients

This commit is contained in:
Luke Vella 2022-04-13 07:56:35 +01:00
parent e44afd84cc
commit 1f792a5d2b
5 changed files with 178 additions and 165 deletions

View file

@ -6,7 +6,7 @@ import CursorClick from "@/components/icons/cursor-click.svg";
const Bonus: React.VoidFunctionComponent = () => {
return (
<div className="py-16 max-w-7xl mx-auto px-8">
<div className="pt-8 pb-24 max-w-7xl mx-auto px-8">
<h2 className="heading">Principles</h2>
<p className="subheading">We&apos;re not like the others</p>
<div className="grid grid-cols-4 gap-16">

View file

@ -12,12 +12,8 @@ const Home: React.VoidFunctionComponent = () => {
<title>Rallly - Schedule group meetings</title>
</Head>
<Hero />
<div className="bg-gradient-to-b from-transparent via-white to-white">
<Features />
</div>
<div className="bg-gradient-to-b from-white via-white to-transparent pb-16">
<Bonus />
</div>
<Features />
<Bonus />
</PageLayout>
);
};