feat(journeys): add Journeys page with controls and layout

This commit is contained in:
Usman Baig
2026-03-12 21:35:05 +01:00
parent 0fa6c4aaf4
commit dc1030036c
2 changed files with 188 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import type { Metadata } from 'next'
export const metadata: Metadata = {
title: 'Journeys | Pulse',
}
export default function JourneysLayout({ children }: { children: React.ReactNode }) {
return children
}