mirror of
https://github.com/dathere/qsvpro.dathere.com.git
synced 2025-12-18 21:59:24 +00:00
Merge pull request #3 from dathere/support
chore: add support to navbar
This commit is contained in:
commit
e75cd429d0
1 changed files with 6 additions and 4 deletions
|
|
@ -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 (
|
||||
<nav className="w-full h-20 flex flex-col justify-center items-center fixed bg-customDarkBg1 lg:bg-customDarkBgTransparent z-40 lg:backdrop-blur-xl">
|
||||
<div className="2xl:w-[1280px] xl:w-10/12 w-11/12 flex justify-between items-center relative">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue