You'll know the difference

This commit is contained in:
Arkaprabha Chakraborty
2024-08-08 03:12:15 +05:30
parent 6f18e8a958
commit 2881d8ffca
2 changed files with 2 additions and 2 deletions

View File

@@ -77,7 +77,7 @@ const DownloadForm = () => {
<div>
<button
type="submit"
className="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500"
className="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-black hover:bg-gray-700 hover:fg-black focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500"
>
Download
</button>

View File

@@ -2,7 +2,7 @@ import React from "react";
const Header = () => {
return (
<header className="bg-blue-600 text-white p-4">
<header className="bg-black text-white p-4">
<h1 className="text-xl font-bold">DownLink</h1>
</header>
);