|
| 1 | +import type { Metadata } from 'next'; |
| 2 | +import Link from 'next/link'; |
| 3 | + |
| 4 | +export const metadata: Metadata = { |
| 5 | + title: 'About', |
| 6 | + description: 'c0upons is a free, open-source community coupon platform built by Profullstack, Inc.', |
| 7 | + alternates: { canonical: 'https://c0upons.com/about' }, |
| 8 | +}; |
| 9 | + |
| 10 | +export default function AboutPage() { |
| 11 | + return ( |
| 12 | + <div className="max-w-2xl mx-auto flex flex-col gap-10"> |
| 13 | + <div> |
| 14 | + <h1 className="text-3xl font-black text-gray-900">About c0upons</h1> |
| 15 | + <p className="text-gray-500 mt-2">Community-powered savings, open source and free forever.</p> |
| 16 | + </div> |
| 17 | + |
| 18 | + <section className="flex flex-col gap-4"> |
| 19 | + <h2 className="text-xl font-bold text-gray-900 border-b border-gray-200 pb-2">What is c0upons?</h2> |
| 20 | + <p className="text-gray-600 leading-relaxed"> |
| 21 | + c0upons is a free, community-driven coupon code directory. Anyone can browse deals, |
| 22 | + copy promo codes, vote on the best ones, and submit new codes — no account required. |
| 23 | + The community votes codes up or down, so the most useful deals always rise to the top. |
| 24 | + </p> |
| 25 | + <p className="text-gray-600 leading-relaxed"> |
| 26 | + We believe saving money shouldn't require installing a browser extension, creating an |
| 27 | + account, or wading through ads. c0upons is a fast, simple, open platform anyone can use |
| 28 | + and contribute to. |
| 29 | + </p> |
| 30 | + </section> |
| 31 | + |
| 32 | + <section className="flex flex-col gap-4"> |
| 33 | + <h2 className="text-xl font-bold text-gray-900 border-b border-gray-200 pb-2">Who built it?</h2> |
| 34 | + <p className="text-gray-600 leading-relaxed"> |
| 35 | + c0upons is built and maintained by{' '} |
| 36 | + <a href="https://profullstack.com" target="_blank" rel="noopener noreferrer" className="text-orange-500 hover:underline font-medium"> |
| 37 | + Profullstack, Inc. |
| 38 | + </a>{' '} |
| 39 | + — a software studio focused on open-source developer tools and community platforms. |
| 40 | + </p> |
| 41 | + <p className="text-gray-600 leading-relaxed"> |
| 42 | + The project is open source under the MIT license. Contributions, bug reports, |
| 43 | + and feature requests are welcome on{' '} |
| 44 | + <a href="https://github.com/profullstack/c0upons" target="_blank" rel="noopener noreferrer" className="text-orange-500 hover:underline font-medium"> |
| 45 | + GitHub |
| 46 | + </a>. |
| 47 | + </p> |
| 48 | + </section> |
| 49 | + |
| 50 | + <section className="flex flex-col gap-4"> |
| 51 | + <h2 className="text-xl font-bold text-gray-900 border-b border-gray-200 pb-2">How it works</h2> |
| 52 | + <ul className="flex flex-col gap-3"> |
| 53 | + {[ |
| 54 | + { step: '1', title: 'Browse', desc: 'Search or browse by store to find coupon codes for hundreds of retailers.' }, |
| 55 | + { step: '2', title: 'Copy', desc: 'Click "Copy" to copy a coupon code instantly to your clipboard.' }, |
| 56 | + { step: '3', title: 'Vote', desc: 'Connect with CoinPay to vote codes up so the best ones stay visible.' }, |
| 57 | + { step: '4', title: 'Submit', desc: 'Found a code not on the site? Submit it in seconds via the submission form or REST API.' }, |
| 58 | + ].map((item) => ( |
| 59 | + <li key={item.step} className="flex gap-4 items-start"> |
| 60 | + <span className="w-7 h-7 bg-orange-500 text-white text-sm font-black rounded-full flex items-center justify-center shrink-0 mt-0.5"> |
| 61 | + {item.step} |
| 62 | + </span> |
| 63 | + <div> |
| 64 | + <span className="font-semibold text-gray-900">{item.title} — </span> |
| 65 | + <span className="text-gray-600">{item.desc}</span> |
| 66 | + </div> |
| 67 | + </li> |
| 68 | + ))} |
| 69 | + </ul> |
| 70 | + </section> |
| 71 | + |
| 72 | + <section className="flex flex-col gap-4"> |
| 73 | + <h2 className="text-xl font-bold text-gray-900 border-b border-gray-200 pb-2">Contact</h2> |
| 74 | + <p className="text-gray-600"> |
| 75 | + For general enquiries, bug reports, or partnership requests, email{' '} |
| 76 | + <a href="mailto:anthony@profullstack.com" className="text-orange-500 hover:underline font-medium"> |
| 77 | + anthony@profullstack.com |
| 78 | + </a>. |
| 79 | + </p> |
| 80 | + <p className="text-gray-600"> |
| 81 | + For security issues, see our{' '} |
| 82 | + <a href="/.well-known/security.txt" className="text-orange-500 hover:underline font-medium"> |
| 83 | + security.txt |
| 84 | + </a>. |
| 85 | + </p> |
| 86 | + </section> |
| 87 | + |
| 88 | + <div className="flex gap-4"> |
| 89 | + <Link href="/" className="bg-orange-500 hover:bg-orange-600 text-white font-semibold px-5 py-2.5 rounded-xl text-sm transition-colors"> |
| 90 | + Browse coupons |
| 91 | + </Link> |
| 92 | + <a |
| 93 | + href="https://github.com/profullstack/c0upons" |
| 94 | + target="_blank" |
| 95 | + rel="noopener noreferrer" |
| 96 | + className="border border-gray-200 hover:border-gray-300 text-gray-700 font-semibold px-5 py-2.5 rounded-xl text-sm transition-colors" |
| 97 | + > |
| 98 | + View on GitHub ↗ |
| 99 | + </a> |
| 100 | + </div> |
| 101 | + </div> |
| 102 | + ); |
| 103 | +} |
0 commit comments