This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Deploy EU Rules 2026 blog post to ClearToFly | |
| const https = require('https'); | |
| const fs = require('fs'); | |
| const GIST_URL = 'https://gist.githubusercontent.com/DeMavic/79a2df95de761ee196c19f3b5e30fdc0/raw/5f5876260db0af9834b03b20ca89bd7910bff2c5/blog-post-eu-rules-2026.tsx'; | |
| const BLOG_POST_PATH = 'client/src/lib/blog-post-eu-rules-2026.tsx'; | |
| const BLOG_DATA_PATH = 'client/src/lib/blog-data.tsx'; | |
| const IMPORT_LINE = 'import { EuRules2026Post } from "./blog-post-eu-rules-2026";'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { | |
| Accordion, | |
| AccordionContent, | |
| AccordionItem, | |
| AccordionTrigger, | |
| } from "@/components/ui/accordion"; | |
| import { BlogLink } from "./blog-data"; | |
| import { InlineChecklistSignup } from "@/components/inline-checklist-signup"; | |
| export function EuRules2026Post() { |