From e63860b08285c509d4fde925359c01bbd4a6bf05 Mon Sep 17 00:00:00 2001 From: Matt Kirby <MattJKirby@outlook.com> Date: Thu, 13 Apr 2023 17:08:44 +0100 Subject: [PATCH] Fixed hero page --- daily-thought-frontend/src/components/hero/Hero.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/daily-thought-frontend/src/components/hero/Hero.tsx b/daily-thought-frontend/src/components/hero/Hero.tsx index 34c364f2..24037c40 100644 --- a/daily-thought-frontend/src/components/hero/Hero.tsx +++ b/daily-thought-frontend/src/components/hero/Hero.tsx @@ -1,24 +1,24 @@ export default function Hero() { return ( - <div className="bg-c-pink"> + <div className="bg-white"> <div className="relative isolate px-6 pt-14 lg:px-8"> <div className="mx-auto max-w-2xl py-32 sm:py-48 lg:py-56"> <div className="text-center"> - <h1 className="text-4xl font-bold tracking-tight text-c-green sm:text-6xl"> + <h1 className="text-4xl font-bold tracking-tight text-c-pink sm:text-6xl"> Welcome to Daily </h1> - <p className="mt-6 text-lg leading-8 text-white"> + <p className="mt-6 text-lg leading-8 text-black"> Hello there! Welcome to Daily - a social media plaform focussed on finding the answers to sometimes weird, always wonderful yet totally random daily thoughts. </p> <div className="mt-10 flex items-center justify-center gap-x-6"> <a href="#" - className="rounded-md bg-c-green px-3.5 py-2.5 text-sm font-semibold text-black shadow-sm hover:bg-white hover:text-c-pink focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-pink-400" + className="rounded-md bg-c-pink px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-white hover:text-c-pink focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-pink-400" > Sign Up </a> - <a href="#" className="text-sm font-semibold leading-6 text-c-green"> + <a href="#" className="text-sm font-semibold leading-6 text-c-pink"> Log In <span aria-hidden="true">→</span> </a> </div> -- GitLab