Home / File/ page-nav.tsx — ui Source File

page-nav.tsx — ui Source File

Architecture documentation for page-nav.tsx, a tsx file in the ui codebase. 1 imports, 0 dependents.

File tsx Internationalization RTLLayout 1 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  61382a06_c2d8_e0a1_5bdb_690866c297aa["page-nav.tsx"]
  79081a1f_55a3_945a_fb8c_d53d6d3eab81["utils"]
  61382a06_c2d8_e0a1_5bdb_690866c297aa --> 79081a1f_55a3_945a_fb8c_d53d6d3eab81
  style 61382a06_c2d8_e0a1_5bdb_690866c297aa fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import { cn } from "@/lib/utils"

export function PageNav({
  children,
  className,
  ...props
}: React.ComponentProps<"div">) {
  return (
    <div className={cn("container-wrapper scroll-mt-24", className)} {...props}>
      <div className="container flex items-center justify-between gap-4 py-4">
        {children}
      </div>
    </div>
  )
}

Subdomains

Functions

Dependencies

  • utils

Frequently Asked Questions

What does page-nav.tsx do?
page-nav.tsx is a source file in the ui codebase, written in tsx. It belongs to the Internationalization domain, RTLLayout subdomain.
What functions are defined in page-nav.tsx?
page-nav.tsx defines 1 function(s): PageNav.
What does page-nav.tsx depend on?
page-nav.tsx imports 1 module(s): utils.
Where is page-nav.tsx in the architecture?
page-nav.tsx is located at apps/v4/components/page-nav.tsx (domain: Internationalization, subdomain: RTLLayout, directory: apps/v4/components).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free