🔍 SSR Function Tester

Tests each SSR backend function directly (no bot UA spoofing needed). Validates title, description, og:image, and debug comment.

getHomeSSR
Homepage – no params needed
getBrowseSSR
Browse page – listings + attractions
getBrandsSSR
Brands directory – all published establishments
getMenuSSR (use a real slug below)
Menu page by slug
getAttractionSSR (use a real slug below)
Attraction page by slug
curl commands for bot simulation:
# Homepage
curl -A "facebookexternalhit/1.1" https://bestdish.ro/

# Browse
curl -A "facebookexternalhit/1.1" https://bestdish.ro/Browse

# Brands
curl -A "facebookexternalhit/1.1" https://bestdish.ro/Brands

# Menu (replace SLUG)
curl -A "facebookexternalhit/1.1" "https://bestdish.ro/Menu?local=SLUG"

# Attraction (replace SLUG)
curl -A "facebookexternalhit/1.1" "https://bestdish.ro/attraction?name=SLUG"

# Direct function test (no worker)
curl "https://bestdish.ro/functions/getHomeSSR"
curl "https://bestdish.ro/functions/getBrowseSSR"
curl "https://bestdish.ro/functions/getBrandsSSR"
curl "https://bestdish.ro/functions/getMenuSSR?local=SLUG"
curl "https://bestdish.ro/functions/getAttractionSSR?name=SLUG"