Skip to content

Instantly share code, notes, and snippets.

@cloudenshine
Created June 22, 2025 00:32
Show Gist options
  • Save cloudenshine/98ebe127b393169b02651f78601d56f0 to your computer and use it in GitHub Desktop.
Save cloudenshine/98ebe127b393169b02651f78601d56f0 to your computer and use it in GitHub Desktop.
Component created by n8n workflow
<html> <head> <title>My Cool Component</title> <style> body { font-family: sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; background-color: #f0f2f5; } .card { background-color: white; border-radius: 10px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); padding: 20px; text-align: center; border: 1px solid #ddd; } .card h1 { color: #333; margin-top: 0; } .card p { color: #666; } </style> </head> <body> <div class="card"> <h1>Hello from n8n!</h1> <p>This component is rendered from a Gist.</p> </div> </body> </html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment