SlopAI homepage source
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

First Design

Fly 8d569af3 27b88e3a

+46 -11
+3
README.md
··· 1 + # SlopAI Homepage 2 + 3 + See the live version [here](https://slopai.nonsense.now)
public/SlopAI.png

This is a binary file and will not be displayed.

+34 -9
public/index.html
··· 1 1 <!doctype html> 2 2 <html lang="en"> 3 - <head> 4 - <meta charset="UTF-8" /> 5 - <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 6 - <title>Hello, World!</title> 7 - </head> 8 - <body> 9 - <h1 id="heading">Hello, World!</h1> 10 - <p>This page comes from a static asset stored at `public/index.html` as configured in `wrangler.jsonc`.</p> 11 - </body> 3 + <head> 4 + <meta charset="UTF-8" /> 5 + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 6 + <title>SlopAI</title> 7 + 8 + <meta property="og:title" content="SlopAI" /> 9 + <meta property="og:description" content="Innovating Slop" /> 10 + <meta 11 + property="og:image" 12 + content="https://slopai.nonsense.now/SlopAI.png" 13 + /> 14 + <meta property="og:url" content="https://your-current-page.com" /> 15 + <meta property="og:type" content="website" /> 16 + 17 + <meta name="twitter:card" content="summary_large_image" /> 18 + <meta name="twitter:title" content="SlopAI" /> 19 + <meta name="twitter:description" content="Innovating Slop" /> 20 + <meta 21 + name="twitter:image" 22 + content="https://slopai.nonsense.now/SlopAI.png" 23 + /> 24 + 25 + <meta 26 + http-equiv="refresh" 27 + content="0; url=https://www.youtube.com/watch?v=dQw4w9WgXcQ" 28 + /> 29 + </head> 30 + <body> 31 + <img src="SlopAI.png" alt="SlopAI logo" /> 32 + 33 + <script> 34 + window.location.href = "https://www.youtube.com/watch?v=dQw4w9WgXcQ"; 35 + </script> 36 + </body> 12 37 </html>
+9 -2
wrangler.jsonc
··· 10 10 // The path to the directory containing the `index.html` file to be served at `/` 11 11 "directory": "./public" 12 12 }, 13 + "workers_dev": false, 13 14 "observability": { 14 15 "enabled": true 15 16 }, 16 17 "upload_source_maps": true, 17 18 "compatibility_flags": [ 18 19 "nodejs_compat" 19 - ] 20 + ], 21 + "routes": [ 22 + { 23 + "pattern": "slopai.nonsense.now", 24 + "custom_domain": true 25 + } 26 + ], 20 27 /** 21 28 * Smart Placement 22 29 * https://developers.cloudflare.com/workers/configuration/smart-placement/#smart-placement ··· 40 47 * https://developers.cloudflare.com/workers/wrangler/configuration/#service-bindings 41 48 */ 42 49 // "services": [ { "binding": "MY_SERVICE", "service": "my-service" } ] 43 - } 50 + }