import { useParams } from 'common' import { PropsWithChildren } from 'react' import { PageLayout } from '@/components/layouts/PageLayout/PageLayout' import { ScaffoldContainer } from '@/components/layouts/Scaffold' const JWTKeysLayout = ({ children }: PropsWithChildren) => { const { ref: projectRef } = useParams() const navigationItems = [ { label: 'JWT Signing Keys', href: `/project/${projectRef}/settings/jwt`, id: 'signing-keys', }, { label: 'Legacy JWT Secret', href: `/project/${projectRef}/settings/jwt/legacy`, id: 'legacy-jwt-keys', }, ] return ( {children} ) } export default JWTKeysLayout