"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
Manage your applications and their logging configurations.