"use client"; import { useAuth } from "@/context/AuthContext"; import Link from "next/link"; import Button from "@/components/shared/Button"; import { usePathname } from "next/navigation"; export default function ApplicationsLayout({ children }) { const pathname = usePathname(); const { user } = useAuth(); if (!user) { return
Loading...
; } return (

Applications

Manage your applications and their logging configurations.

{pathname === "/dashboard/applications" && ( )}
{children}
); }