mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-08-28 05:25:33 +00:00
62 lines
1.3 KiB
TypeScript
62 lines
1.3 KiB
TypeScript
"use client";
|
|
|
|
import { ArrowRightIcon } from "@radix-ui/react-icons";
|
|
import Logo from "../../public/logo.svg";
|
|
import Image from "next/image";
|
|
import Link from "next/link";
|
|
import React from "react";
|
|
import { useState } from "react";
|
|
import {
|
|
motion,
|
|
AnimatePresence,
|
|
useScroll,
|
|
useMotionValueEvent,
|
|
} from "framer-motion";
|
|
import { SlideNavTabs } from "./Headers/Navbar";
|
|
|
|
function NavbarContent() {
|
|
return (
|
|
<div className="">
|
|
<SlideNavTabs />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export const Navbar = () => {
|
|
const { scrollYProgress } = useScroll();
|
|
|
|
const [visible, setVisible] = useState(true);
|
|
|
|
useMotionValueEvent(scrollYProgress, "change", (current) => {
|
|
// Check if current is not undefined and is a number
|
|
if (typeof current === "number") {
|
|
let direction = current! - scrollYProgress.getPrevious()!;
|
|
if (direction < 0) {
|
|
setVisible(true);
|
|
} else {
|
|
setVisible(false);
|
|
}
|
|
}
|
|
});
|
|
|
|
return (
|
|
<AnimatePresence mode="wait">
|
|
<motion.nav
|
|
initial={{
|
|
y: -130,
|
|
opacity: 1,
|
|
}}
|
|
animate={{
|
|
y: visible ? 0 : -100,
|
|
opacity: visible ? 1 : 0,
|
|
}}
|
|
transition={{
|
|
duration: 0.2,
|
|
}}
|
|
className="fixed top-0 z-[99999] mt-12 hidden w-full px-24 text-sm md:flex"
|
|
>
|
|
<NavbarContent />
|
|
</motion.nav>
|
|
</AnimatePresence>
|
|
);
|
|
};
|