import { cookies } from 'next/headers'; import db from '@/db'; import { accountFeedURL } from '@/paths'; import { Container } from '@/components/Container'; async function getSession() { const cookieStore = cookies(); const sessionId = cookieStore.get('session'); if (!sessionId) { return false; } const dbRes = await db.get('select user_id from sessions where session_id=?;', sessionId.value); const { user_id: userId } = dbRes ? dbRes : { user_id: false }; if (!userId) { return false; } return userId; }; export default async function Page() { const userId = await getSession(); const { uuid } = await db.get('select uuid from subscriptions where user_id=?', userId); return (

The Reactors

Thank you so much for your support! It makes this show possible!

Your Personal Podcast Feed

Copy/Paste URL into your podcast app:
{accountFeedURL(uuid)}
Instructions For Common Podcast Apps:
Here
); };