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

Get started button is now visible on light mode #25

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
15 changes: 15 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/app/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default function Home() {
backgroundPosition: "bottom",
}}
>
<h1 className="text-4xl sm:text-5xl font-bold text-white">
<h1 className="text-4xl sm:text-5xl font-bold text-zinc-900">
We are GDG-BU
</h1>

Expand Down
15 changes: 8 additions & 7 deletions src/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,13 @@ export default function Navbar () {
</span>
</a>
<div className="flex md:order-2 space-x-3 md:space-x-0 rtl:space-x-reverse">
<button
type="button"
className="text-white hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-4 py-2 text-center dark:bg-blue-600 dark:hover: dark:focus:ring-blue-800"
>
Get started
</button>
<button
type="button"
className="text-black text-lg border-2 border-gray-500 hover:bg-zinc-800 focus:ring-4 focus:outline-none focus:ring-zinc-300 font-medium rounded-lg text-sm px-4 py-2 text-center bg-white hover:border-zinc-900 dark:bg-zinc-600 dark:hover:bg-zinc-700 dark:focus:ring-zinc-800"
>
Get Started
</button>

<button
data-collapse-toggle="navbar-sticky"
type="button"
Expand Down Expand Up @@ -85,7 +86,7 @@ export default function Navbar () {
<li>
<a
href="#"
className="block py-2 px-3 text-white rounded md:bg-transparent md:text-blue-700 md:p-0 md:dark:text-blue-500"
className=" block py-2 px-3 text-gray-900 rounded hover:bg-gray-100 md:hover:bg-transparent md:hover:text-blue-700 md:p-0 md:dark:hover:text-blue-500 dark:text-white dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent dark:border-gray-700"
aria-current="page"
>
Home
Expand Down