← ClaudeAtlas

tech-product-landinglisted

Build production-grade landing pages for software/CLI tools, developer libraries, and technical products. Uses the "Maxsim-style" design system: dark theme, blue accent glows, framer-motion animations, geometric hero grid, marquee tech stack, tabbed docs, and timeline how-it-works sections. Trigger when user says "create a landing page for my software", "build a product site", "make a landing page like maxsim-flutter", "developer landing page", or "CLI tool website". Stack: Vite + React + TypeScript + Tailwind CSS v4 + Framer Motion + Lucide React.
maystudios/claude-skills · ★ 21 · Web & Frontend · score 79
Install: claude install-skill maystudios/claude-skills
# Tech Product Landing Page This skill produces landing pages by copying the **complete maxsim-flutter source** from `assets/template/` and adapting the content for the target product. The design, animations, and structure stay identical — only the data arrays and product-specific strings change. ## Step 1: Scaffold & Install ```bash npm create vite@latest <project-name> -- --template react-ts cd <project-name> npm install motion lucide-react clsx tailwind-merge npm install -D tailwindcss @tailwindcss/vite @types/node ``` ## Step 2: Copy Template Files Read and copy every file from `assets/template/` to the new project, preserving directory structure: ``` assets/template/ ├── index.html ├── vite.config.ts ├── tsconfig.json ├── vite-env.d.ts └── src/ ├── main.tsx ├── App.tsx ├── index.css ├── lib/utils.ts └── components/sections/ ├── Navbar.tsx ├── Hero.tsx ├── Features.tsx ├── HowItWorks.tsx ├── TechStack.tsx ├── Docs.tsx └── Footer.tsx ``` ## Step 3: Content Replacements All `// ADAPT:` comments in the template mark the exact locations to change. Summary: ### Global string replacements | Find | Replace with | |------|-------------| | `maxsim-flutter` | your product name | | `maystudios/maxsim-flutter` | your GitHub repo (`org/repo`) | | `"maxsim-flutter"` (npm package in vite.config.ts) | your npm package name | | `__MAXSIM_VERSION__` | rename to `__YOUR_PRODUCT_VERSION__` (3 files: vite-en