"use client"; import Logo from "@/components/Logo"; import React, { useState } from "react"; import Link from "next/link"; import Icon from "@/components/Icons/Icon"; function Navigation({ isUserLoggedIn }: { isUserLoggedIn: boolean }) { const [checked, setChecked] = useState(); const handleClick = () => { checked ? setChecked(!checked) : setChecked(checked); }; return (
{/* Navbar */}
    {/* Site branding */}
    {/* Logo */}
    {/* Navbar menu content here */}
  • Become A 10x Dev
  • Meet Sam
  • {/*
  • Contact
  • */} {isUserLoggedIn ? (
  • Account
  • ) : ( <> )}
{/* Page content here */}
    {/* Sidebar content here */}
    {/* Logo */}
  • Get Your FastPocket
  • Meet Sam
  • {/*
  • Contact
  • */} {isUserLoggedIn ? (
  • Account
  • ) : ( <> )}
); } export default Navigation;