Skip to content

Commit ba5cc75

Browse files
committed
chore: fix typo in navbar
1 parent 742225a commit ba5cc75

File tree

1 file changed

+3
-3
lines changed
  • apps/web/src/components/landing-sections

1 file changed

+3
-3
lines changed

apps/web/src/components/landing-sections/navbar.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use client";
22
import React, { useState } from "react";
3-
import PrimaryButtom from "../ui/custom-button";
3+
import PrimaryButton from "../ui/custom-button";
44
import { motion, useScroll, useMotionValueEvent } from "framer-motion";
55
import Image from "next/image";
66
import { Terminal, Github, Menu, X } from "lucide-react";
@@ -104,10 +104,10 @@ const Navbar = () => {
104104
<span className="text-sm font-medium">Contribute</span>
105105
</Link>
106106
<Link href="/dashboard/home" className="cursor-pointer z-30">
107-
<PrimaryButtom classname="px-3 py-2 text-sm whitespace-nowrap md:px-5 md:py-3 md:text-base">
107+
<PrimaryButton classname="px-3 py-2 text-sm whitespace-nowrap md:px-5 md:py-3 md:text-base">
108108
<Terminal className="w-4 h-4 md:w-5 md:h-5"/>
109109
<span>Get Started</span>
110-
</PrimaryButtom>
110+
</PrimaryButton>
111111
</Link>
112112
</div>
113113
{isOpen && (

0 commit comments

Comments
 (0)