This commit is contained in:
himanshu8443
2025-06-16 22:26:38 +05:30
parent 3f3e12f5df
commit 2a4aa2a680
185 changed files with 4645 additions and 3952 deletions

View File

@@ -1,27 +1,27 @@
export const world4uCatalogList = [
export const catalog = [
{
title: 'Latest',
filter: '',
title: "Latest",
filter: "",
},
{
title: 'Hollywood',
filter: '/category/hollywood',
title: "Hollywood",
filter: "/category/hollywood",
},
{
title: 'Bollywood',
filter: '/category/bollywood',
title: "Bollywood",
filter: "/category/bollywood",
},
{
title: 'Web Series',
filter: '/category/web-series',
title: "Web Series",
filter: "/category/web-series",
},
];
export const world4uGenresList = [
{title: 'South', filter: '/category/hindi-dubbed-movies/south-indian'},
{title: 'Punjabi', filter: '/category/punjabi'},
{title: 'Marathi', filter: '/category/bollywood/marathi'},
{title: 'Gujarati', filter: '/category/gujarati'},
{title: 'Bollywood', filter: '/category/bollywood'},
{title: 'Hollywood', filter: '/category/hollywood'},
export const genres = [
{ title: "South", filter: "/category/hindi-dubbed-movies/south-indian" },
{ title: "Punjabi", filter: "/category/punjabi" },
{ title: "Marathi", filter: "/category/bollywood/marathi" },
{ title: "Gujarati", filter: "/category/gujarati" },
{ title: "Bollywood", filter: "/category/bollywood" },
{ title: "Hollywood", filter: "/category/hollywood" },
];