|
| 1 | +import React from "react"; |
| 2 | +import { CheckCircle } from "lucide-react"; |
| 3 | + |
| 4 | +const benefits = [ |
| 5 | + { |
| 6 | + text: "Save hours of manual writing — generate a complete, production-ready GitHub README in under 5 seconds.", |
| 7 | + }, |
| 8 | + { |
| 9 | + text: "AI README output adapts to your stack — whether it's Next.js, Go, Python, or any other framework.", |
| 10 | + }, |
| 11 | + { |
| 12 | + text: "Your code stays private — ReadmeGenAI only reads public repository metadata, never stores your source.", |
| 13 | + }, |
| 14 | +]; |
| 15 | + |
| 16 | +export const SEOSection = () => ( |
| 17 | + <section className="py-20 border-t border-white/5 bg-black"> |
| 18 | + <div className="max-w-5xl mx-auto px-4"> |
| 19 | + {/* Why section */} |
| 20 | + <div className="mb-16"> |
| 21 | + <h2 className="text-3xl md:text-4xl font-extrabold tracking-tighter mb-6 text-white"> |
| 22 | + Why Use an AI README Generator? |
| 23 | + </h2> |
| 24 | + <p className="text-gray-400 text-lg leading-relaxed max-w-3xl"> |
| 25 | + Writing a great GitHub README takes time, expertise, and consistency. |
| 26 | + ReadmeGenAI automates the entire process—detecting your tech stack, |
| 27 | + summarizing your project's purpose, and formatting everything to |
| 28 | + GitHub best practices. Whether you're shipping a side project or |
| 29 | + an enterprise library, a polished AI README makes your work stand out. |
| 30 | + </p> |
| 31 | + </div> |
| 32 | + |
| 33 | + {/* Feature bullet points */} |
| 34 | + <div className="mb-16"> |
| 35 | + <h2 className="text-2xl md:text-3xl font-extrabold tracking-tighter mb-8 text-white"> |
| 36 | + Key Benefits of ReadmeGenAI |
| 37 | + </h2> |
| 38 | + <ul className="space-y-4"> |
| 39 | + {benefits.map((benefit, idx) => ( |
| 40 | + <li key={idx} className="flex items-start gap-3"> |
| 41 | + <CheckCircle |
| 42 | + size={20} |
| 43 | + className="text-blue-400 mt-0.5 shrink-0" |
| 44 | + /> |
| 45 | + <span className="text-gray-300 text-base leading-relaxed"> |
| 46 | + {benefit.text} |
| 47 | + </span> |
| 48 | + </li> |
| 49 | + ))} |
| 50 | + </ul> |
| 51 | + </div> |
| 52 | + |
| 53 | + {/* Additional H2 subheadings for keyword coverage */} |
| 54 | + <div className="grid grid-cols-1 md:grid-cols-2 gap-10"> |
| 55 | + <div> |
| 56 | + <h2 className="text-xl md:text-2xl font-bold tracking-tight mb-3 text-white"> |
| 57 | + Instant GitHub README Generation |
| 58 | + </h2> |
| 59 | + <p className="text-gray-400 text-sm leading-relaxed"> |
| 60 | + Paste any public GitHub repository URL and receive a fully |
| 61 | + structured README in seconds. No templates to fill in, no markdown |
| 62 | + to learn—just a professional AI README, ready to ship. |
| 63 | + </p> |
| 64 | + </div> |
| 65 | + |
| 66 | + <div> |
| 67 | + <h2 className="text-xl md:text-2xl font-bold tracking-tight mb-3 text-white"> |
| 68 | + Smart Codebase & Framework Detection |
| 69 | + </h2> |
| 70 | + <p className="text-gray-400 text-sm leading-relaxed"> |
| 71 | + Our GitHub README generator automatically identifies your |
| 72 | + dependencies, frameworks, and project structure to produce accurate, |
| 73 | + context-aware documentation every time. |
| 74 | + </p> |
| 75 | + </div> |
| 76 | + |
| 77 | + <div> |
| 78 | + <h2 className="text-xl md:text-2xl font-bold tracking-tight mb-3 text-white"> |
| 79 | + GitHub Best Practices, Built In |
| 80 | + </h2> |
| 81 | + <p className="text-gray-400 text-sm leading-relaxed"> |
| 82 | + Every AI README follows GitHub's formatting standards—badges, |
| 83 | + installation instructions, usage examples, and contribution |
| 84 | + guidelines are included automatically. |
| 85 | + </p> |
| 86 | + </div> |
| 87 | + |
| 88 | + <div> |
| 89 | + <h2 className="text-xl md:text-2xl font-bold tracking-tight mb-3 text-white"> |
| 90 | + Free AI README Generator for Every Developer |
| 91 | + </h2> |
| 92 | + <p className="text-gray-400 text-sm leading-relaxed"> |
| 93 | + ReadmeGenAI is free to use for all public repositories. Whether |
| 94 | + you're a solo developer or an open-source maintainer, quality |
| 95 | + documentation is now just one click away. |
| 96 | + </p> |
| 97 | + </div> |
| 98 | + </div> |
| 99 | + </div> |
| 100 | + </section> |
| 101 | +); |
0 commit comments