---
import { txasupabase } from '../lib/txasupabase.js';
const genres = await txasupabase.getGenres().catch(() => []);
const countries = await txasupabase.getCountries().catch(() => []);
const navLinks = [
{ href: '/', label: 'Trang chủ' },
{ href: '/danh-sach/phim-le', label: 'Phim Lẻ' },
{ href: '/danh-sach/phim-bo', label: 'Phim Bộ' },
];
---