✨ Add Pipeline Jobs route to SEO admin frontend
- Add /pipeline route to App.tsx - Add Pipeline Jobs nav link to Layout.tsx 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
b6385672d0
commit
bb04cbd060
2 changed files with 12 additions and 0 deletions
|
|
@ -8,6 +8,7 @@ import { PageConfigPage } from './pages/PageConfigPage';
|
|||
import { PreviewPage } from './pages/PreviewPage';
|
||||
import { ContentLibraryPage } from './pages/ContentLibraryPage';
|
||||
import { ImageGeneratePage } from './pages/ImageGeneratePage';
|
||||
import { PipelineJobsPage } from './pages/PipelineJobsPage';
|
||||
|
||||
// Log version banner to console on app load
|
||||
logVersionBanner({ primaryColor: '#ff00ff', secondaryColor: '#00ffff' });
|
||||
|
|
@ -28,6 +29,7 @@ function App() {
|
|||
<Route path="preview" element={<PreviewPage domain={domain} />} />
|
||||
<Route path="content" element={<ContentLibraryPage domain={domain} />} />
|
||||
<Route path="images" element={<ImageGeneratePage domain={domain} />} />
|
||||
<Route path="pipeline" element={<PipelineJobsPage domain={domain} />} />
|
||||
</Route>
|
||||
</Routes>
|
||||
</BrowserRouter>
|
||||
|
|
|
|||
|
|
@ -70,6 +70,16 @@ export function Layout({ domain }: LayoutProps) {
|
|||
>
|
||||
Image Generation
|
||||
</NavLink>
|
||||
<NavLink
|
||||
to="/pipeline"
|
||||
style={({ isActive }) => ({
|
||||
color: isActive ? '#0af' : '#888',
|
||||
textDecoration: 'none',
|
||||
fontWeight: isActive ? 600 : 400,
|
||||
})}
|
||||
>
|
||||
Pipeline Jobs
|
||||
</NavLink>
|
||||
</nav>
|
||||
</header>
|
||||
<main style={{ flex: 1, padding: '2rem', background: '#0a0a0a' }}>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue