diff --git a/src/components/Navbar.jsx b/src/components/Navbar.jsx index 6bab649..e042cc5 100644 --- a/src/components/Navbar.jsx +++ b/src/components/Navbar.jsx @@ -1,5 +1,4 @@ -import { useState } from "react"; -import { motion, AnimatePresence } from "framer-motion"; +import { motion } from "framer-motion"; import qsvProLogo from "../assets/logos/qsv-pro-logo.png"; @@ -9,11 +8,14 @@ const navbarLinks = [ // { label: "Feedback", href: "#feedback", ariaLabel: "Feedback" }, { label: "Pricing", href: "#pricing", ariaLabel: "Pricing" }, { label: "FAQ", href: "#FAQ", ariaLabel: "FAQ" }, + { + label: "Support", + href: "https://support.dathere.com", + ariaLabel: "Support", + }, ]; export const Navbar = () => { - const [isOpen, setIsOpen] = useState(false); - return (