Files
the-other-dude/frontend/src/routes/_authenticated/vpn.tsx
Jason Staack b840047e19 feat: The Other Dude v9.0.1 — full-featured email system
ci: add GitHub Pages deployment workflow for docs site

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-08 19:30:44 -05:00

7 lines
196 B
TypeScript

import { createFileRoute } from '@tanstack/react-router'
import { VpnPage } from '@/components/vpn/VpnPage'
export const Route = createFileRoute('/_authenticated/vpn')({
component: VpnPage,
})