This bundle contains everything you need to deploy and customize the Webflow Integration Knowledge Base, including all documentation, source code, and deployment-ready files.
kb-final-bundle/
├── README.md # This file
├── documentation/ # All documentation files
│ ├── WEBFLOW_INTEGRATION_GUIDELINE.md
│ ├── IMPLEMENTATION_EXAMPLES.md
│ ├── CLAUDE_PRD_11TY_SHOPIFY_UCP.md
│ ├── ASCII_FLOW_CHART.md
│ └── LLM_IMPLEMENTATION_PROMPT.md
└── 11ty-site/ # Complete 11ty project
├── src/ # Source files
│ ├── _includes/ # Templates and components
│ ├── css/ # Stylesheets
│ ├── js/ # JavaScript files
│ └── *.njk # Page templates
├── _site/ # Built static site (ready to deploy)
├── package.json # Dependencies
├── .eleventy.js # 11ty configuration
├── README.md # Project README
└── INTEGRATION_GUIDE.md # Webflow/Shopify/Google Session Layer integration guide
The 11ty-site/_site/ directory contains a fully built static website ready for deployment:
- Navigate to
11ty-site/_site/ - Upload all files to your web server, CDN, or static hosting provider
- No build process required!
Recommended Hosts:
- Netlify (drag & drop deployment)
- Vercel
- GitHub Pages
- AWS S3 + CloudFront
- Any static web server
If you want to modify the site:
- Navigate to
11ty-site/ - Install dependencies:
npm install
- Start development server:
npm start
- Make your changes in
src/ - Build for production:
npm run build
- Deploy the
_site/directory
Complete technical guideline for integrating Webflow with Shopify and Google AI, including:
- Architecture overview
- Data flow diagrams
- Implementation steps for each component
- Security best practices
Practical code examples including:
- Client-side JavaScript for UCP sessions
- Consent management UI
- WebSocket client implementation
- Xano/n8n middleware logic
- Shopify GraphQL mutations
- Security implementations (JWT, webhook signatures)
Product Requirements Document for building the complete system:
- Business requirements
- User stories
- Technical specifications
- Success metrics
- Security requirements
Visual flow charts covering:
- Complete system architecture
- Build-time data flow (11ty)
- Runtime user flow
- OAuth 2.0 authentication sequence
- A2P payment processing
- WebSocket data streaming
Copy-paste-ready prompt for LLMs (Claude, GPT-4) to build the entire system from scratch:
- Step-by-step implementation guide
- Complete code examples
- Configuration templates
- Testing and deployment instructions
Complete implementation guide for using 11ty as a build-time GraphQL data layer that syncs to Webflow CMS:
- Architecture: 11ty fetches Shopify data via GraphQL → transforms → syncs to Webflow CMS
- Full Shopify GraphQL client with pagination
- Webflow CMS API wrapper with rate limiting
- Schema mapping (Shopify → Webflow fields)
- Sync orchestration script with incremental updates
- CI/CD integration (GitHub Actions)
- Runtime integration code for Webflow
The knowledge base website includes:
-
7 Documentation Pages:
- Overview (Home)
- Architecture
- Implementation
- 11ty GraphQL Directives
- 11ty → Webflow Sync (NEW)
- Claude PRD
- Flow Charts
-
Interactive Features:
- Copy-to-clipboard for code blocks
- Mobile-responsive navigation
- Tabbed content sections
- Download buttons for all documentation
-
Design:
- IBM Plex typography
- BEM CSS methodology
- Vanilla JavaScript (no frameworks)
- Mobile-first responsive design
Edit 11ty-site/src/css/main.css and modify the CSS variables:
:root {
--color-primary: #000000; /* Black */
--color-accent: #dc2626; /* Red */
--color-text: #1f2937; /* Dark gray */
/* ... more variables ... */
}- Create a new
.njkfile in11ty-site/src/ - Add front matter:
--- layout: layouts/base.njk title: "Your Page Title" ---
- Add your content
- Update navigation in
src/_includes/components/header.njk - Rebuild:
npm run build
- Layout:
src/_includes/layouts/base.njk - Header:
src/_includes/components/header.njk - Footer:
src/_includes/components/footer.njk
See 11ty-site/INTEGRATION_GUIDE.md for detailed instructions on:
- Copying CSS into Webflow custom code
- Adding JavaScript to Webflow pages
- Replicating the component structure
- Using the same class names for consistency
The documentation covers:
- UCP Catalog API integration
- OAuth 2.0 authentication
- A2P payment processing
- Real-time data streaming
- Consent management
- All examples use placeholder credentials
- Implement proper environment variable management
- Use HTTPS/TLS 1.3 in production
- Follow OAuth 2.0 best practices (PKCE)
- Implement CSRF protection
- Use httpOnly cookies for tokens
For questions or issues:
- Review the documentation in the
documentation/folder - Check the
11ty-site/README.mdfor site-specific help - Consult the
INTEGRATION_GUIDE.mdfor integration questions
This project is provided as-is for educational and commercial use.
Version: 1.1.0 Last Updated: January 14, 2026 Built with: Eleventy 3.0, Vanilla CSS/JS, IBM Plex fonts