Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added styling to main heading #16

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ export default function Home() {
<div className="flex justify-center h-screen items-center bg-[rgb(246,246,247)] ">
<div className="w-screen px-12 ">
<div className="flex flex-col gap-2">
<h6 className="text-center font-light text-[rgb(27,27,32)]">
<h6 className="text-center text-2xl font-bold text-[rgb(27,27,32)]">
TYPING SPEED TEST
</h6>
<h1 className="text-6xl font-bold text-center text-[rgb(27,27,32)]">
<h1 className="bg-gradient-to-r from-orange-500 via-yellow-300 to-yellow-600 inline-block text-transparent bg-clip-text text-6xl font-bold text-center pb-8 drop-shadow-[0_1.2px_1.2px_rgba(0,0,0,0.8)]">
Test your typing skills
</h1>
<Stats />
Expand Down