mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-05-01 09:21:21 +00:00
fix: proper linking
This commit is contained in:
parent
439b6eabe8
commit
2a2d333461
3 changed files with 3 additions and 3 deletions
|
@ -33,7 +33,7 @@ export const Cta: React.FC = () => {
|
||||||
<div>
|
<div>
|
||||||
<Link
|
<Link
|
||||||
className=" justify-center flex sm:inline-flex items-center whitespace-nowrap transition duration-150 ease-in-out font-medium rounded px-4 py-1.5 text-zinc-900 bg-gradient-to-r from-white/80 via-white to-white/80 hover:bg-white group"
|
className=" justify-center flex sm:inline-flex items-center whitespace-nowrap transition duration-150 ease-in-out font-medium rounded px-4 py-1.5 text-zinc-900 bg-gradient-to-r from-white/80 via-white to-white/80 hover:bg-white group"
|
||||||
href="/overview"
|
href="/"
|
||||||
>
|
>
|
||||||
Get Started{" "}
|
Get Started{" "}
|
||||||
<ArrowRight className="w-3 h-3 tracking-normal text-primary-500 group-hover:translate-x-0.5 transition-transform duration-150 ease-in-out ml-1" />
|
<ArrowRight className="w-3 h-3 tracking-normal text-primary-500 group-hover:translate-x-0.5 transition-transform duration-150 ease-in-out ml-1" />
|
||||||
|
|
|
@ -44,7 +44,7 @@ export const Hero: React.FC = () => {
|
||||||
>
|
>
|
||||||
<Link
|
<Link
|
||||||
className="w-full justify-center flex items-center whitespace-nowrap transition duration-150 ease-in-out font-medium rounded px-4 py-1.5 text-zinc-900 bg-gradient-to-r from-white/80 via-white to-white/80 hover:bg-white group"
|
className="w-full justify-center flex items-center whitespace-nowrap transition duration-150 ease-in-out font-medium rounded px-4 py-1.5 text-zinc-900 bg-gradient-to-r from-white/80 via-white to-white/80 hover:bg-white group"
|
||||||
href="/overview"
|
href="/"
|
||||||
>
|
>
|
||||||
Get Started{" "}
|
Get Started{" "}
|
||||||
<ArrowRight className="w-3 h-3 tracking-normal text-primary-500 group-hover:translate-x-0.5 transition-transform duration-150 ease-in-out ml-1" />
|
<ArrowRight className="w-3 h-3 tracking-normal text-primary-500 group-hover:translate-x-0.5 transition-transform duration-150 ease-in-out ml-1" />
|
||||||
|
|
|
@ -17,7 +17,7 @@ export const Header: React.FC = () => {
|
||||||
<li>
|
<li>
|
||||||
<Link
|
<Link
|
||||||
className="text-sm font-medium text-zinc-300 hover:text-white duration-500"
|
className="text-sm font-medium text-zinc-300 hover:text-white duration-500"
|
||||||
href="/overview"
|
href="/"
|
||||||
>
|
>
|
||||||
Sign in
|
Sign in
|
||||||
</Link>
|
</Link>
|
||||||
|
|
Loading…
Reference in a new issue