refactor: migrate from drizzle to PocketBase

This commit is contained in:
Norbert Maciaszek
2025-10-27 20:29:49 +01:00
parent 68fb45d6ef
commit 9231e0642c
23 changed files with 240 additions and 1198 deletions

View File

@@ -3,9 +3,7 @@ import { FC, useMemo, useState } from 'react';
import { useGlobalStore } from '@/app/store/globalStore';
import { Button } from '@/components/atoms/Button';
import { FaDice } from 'react-icons/fa';
import { useRouter } from 'next/navigation';
import Link from 'next/link';
import { Movie } from '@/types/global';
type StoreFilter = 'all' | 'not_seen' | 'released' | 'favorites' | 'to_watch';