code: nextjs,frontends,role (4 files)

This commit is contained in:
2025-12-26 03:14:24 +00:00
parent 57784ee6c5
commit 85a2e38e10
4 changed files with 10 additions and 7 deletions

View File

@@ -18,14 +18,14 @@
import { useState, useEffect } from 'react'
import { getScrambledPassword } from '@/lib/auth'
import { NavigationBar } from './level1/NavigationBar'
import { GodCredentialsBanner } from './level1/GodCredentialsBanner'
import { HeroSection } from './level1/HeroSection'
import { FeaturesSection } from './level1/FeaturesSection'
import { ContactSection } from './level1/ContactSection'
import { AppFooter } from './shared/AppFooter'
import { NavigationBar } from '../../level1/NavigationBar'
import { GodCredentialsBanner } from '../../level1/GodCredentialsBanner'
import { HeroSection } from '../../level1/HeroSection'
import { FeaturesSection } from '../../level1/FeaturesSection'
import { ContactSection } from '../../level1/ContactSection'
import { AppFooter } from '../../shared/AppFooter'
import { Tabs, TabsContent, TabsList, TabsTrigger } from '@/components/ui'
import { GitHubActionsFetcher } from './GitHubActionsFetcher'
import { GitHubActionsFetcher } from '../../misc/github/GitHubActionsFetcher'
// Props for Level1 component
interface Level1Props {

View File

@@ -0,0 +1 @@
export { getRoleHomePath } from './role/get-role-home-path'

View File

@@ -0,0 +1 @@
export { getRoleLevel } from './role/get-role-level'

View File

@@ -0,0 +1 @@
export { resolveAccessDecision } from './access/resolve-access-decision'