about.ejs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>About - Art Number Coloring</title>
  7. <link rel="icon" href="/assets/icon/favicon.ico" type="image/x-icon">
  8. <link rel="stylesheet" href="/stylesheets/v2/styles.css">
  9. <style>
  10. :root {
  11. --art-color: #ff9f1c;
  12. /* 用于Art Number Coloring相关的高亮颜色 */
  13. }
  14. .about-grid {
  15. display: grid;
  16. grid-template-columns: 1fr 1fr;
  17. gap: 40px;
  18. margin-top: 30px;
  19. }
  20. .about-item {
  21. background-color: var(--background-color);
  22. border-radius: 10px;
  23. padding: 25px;
  24. transition: all 0.3s ease;
  25. }
  26. .about-item:hover {
  27. transform: translateY(-5px);
  28. box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  29. }
  30. .brand-image {
  31. margin: 30px 0;
  32. border-radius: 10px;
  33. overflow: hidden;
  34. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  35. transition: transform 0.3s ease;
  36. }
  37. .brand-image:hover {
  38. transform: scale(1.02);
  39. }
  40. .brand-image img {
  41. width: 100%;
  42. height: auto;
  43. max-height: 400px;
  44. object-fit: cover;
  45. }
  46. .timeline {
  47. position: relative;
  48. margin: 50px 0;
  49. }
  50. .timeline::before {
  51. content: '';
  52. position: absolute;
  53. top: 0;
  54. bottom: 0;
  55. left: 50%;
  56. width: 2px;
  57. background-color: var(--secondary-color);
  58. transform: translateX(-50%);
  59. }
  60. .timeline-item {
  61. position: relative;
  62. margin-bottom: 40px;
  63. padding: 20px;
  64. width: 50%;
  65. }
  66. .timeline-item:nth-child(even) {
  67. left: 50%;
  68. padding-left: 40px;
  69. }
  70. .timeline-item:nth-child(odd) {
  71. padding-right: 40px;
  72. text-align: right;
  73. }
  74. .timeline-item::after {
  75. content: '';
  76. position: absolute;
  77. top: 20px;
  78. width: 20px;
  79. height: 20px;
  80. border-radius: 50%;
  81. background-color: var(--primary-color);
  82. z-index: 1;
  83. }
  84. .timeline-item:nth-child(even)::after {
  85. left: -10px;
  86. }
  87. .timeline-item:nth-child(odd)::after {
  88. right: -10px;
  89. }
  90. /* Art Number Coloring相关里程碑的特殊样式 */
  91. .timeline-item.art-related::after {
  92. background-color: var(--art-color);
  93. transform: scale(1.3);
  94. }
  95. .timeline-item.art-related .timeline-year {
  96. color: var(--art-color);
  97. }
  98. .timeline-year {
  99. font-size: 1.2rem;
  100. font-weight: 700;
  101. color: var(--primary-color);
  102. margin-bottom: 10px;
  103. }
  104. .timeline-metric {
  105. font-weight: 600;
  106. color: var(--secondary-color);
  107. }
  108. .timeline-item.art-related .timeline-metric {
  109. color: var(--art-color);
  110. }
  111. .games-grid {
  112. display: grid;
  113. grid-template-columns: 1fr 1fr;
  114. gap: 30px;
  115. margin-top: 30px;
  116. }
  117. .game-card {
  118. background-color: var(--background-color);
  119. border-radius: 10px;
  120. overflow: hidden;
  121. transition: all 0.3s ease;
  122. }
  123. .game-card:hover {
  124. transform: translateY(-5px);
  125. box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  126. }
  127. .game-image {
  128. height: 260px;
  129. background-color: #f0f0f0;
  130. overflow: hidden;
  131. }
  132. .game-image img {
  133. width: 100%;
  134. height: 100%;
  135. object-fit: cover;
  136. transition: transform 0.5s ease;
  137. }
  138. .game-card:hover .game-image img {
  139. transform: scale(1.05);
  140. }
  141. .game-content {
  142. padding: 20px;
  143. }
  144. .game-title {
  145. font-weight: 600;
  146. margin-bottom: 5px;
  147. color: var(--text-color);
  148. }
  149. .game-desc {
  150. font-size: 0.9rem;
  151. color: var(--light-text);
  152. }
  153. .game-badge-container {
  154. display: flex;
  155. justify-content: start;
  156. gap: 20px;
  157. }
  158. .game-badge {
  159. display: flex;
  160. justify-content: center;
  161. align-items: center;
  162. width: 120px;
  163. height: auto;
  164. background-color: black;
  165. border-radius: 8px;
  166. margin: 10px 0 0 0;
  167. transition: transform 0.3s ease;
  168. }
  169. .game-badge:hover {
  170. transform: translateY(-5px);
  171. }
  172. .contact-info {
  173. text-align: start;
  174. margin: 30px 0;
  175. }
  176. .contact-email {
  177. display: flex;
  178. align-items: center;
  179. margin-bottom: 20px;
  180. }
  181. .contact-email a {
  182. color: var(--secondary-color);
  183. text-decoration: none;
  184. font-weight: 500;
  185. transition: all 0.3s ease;
  186. }
  187. .contact-email a:hover {
  188. color: var(--primary-color);
  189. text-decoration: underline;
  190. }
  191. .contact-address {
  192. font-size: 0.9rem;
  193. color: var(--light-text);
  194. }
  195. .contact-country {
  196. font-size: 1.1rem;
  197. font-weight: bold;
  198. color: var(--text-color);
  199. }
  200. @media (max-width: 768px) {
  201. h1 {
  202. font-size: 1.8rem;
  203. }
  204. h2 {
  205. font-size: 1.5rem;
  206. }
  207. section {
  208. padding: 20px;
  209. }
  210. .about-grid {
  211. grid-template-columns: 1fr;
  212. }
  213. .games-grid {
  214. grid-template-columns: 1fr;
  215. }
  216. .timeline::before {
  217. left: 20px;
  218. }
  219. .timeline-item {
  220. width: 100%;
  221. padding-left: 50px;
  222. padding-right: 0;
  223. text-align: left;
  224. }
  225. .timeline-item:nth-child(even) {
  226. left: 0;
  227. }
  228. .timeline-item:nth-child(odd)::after,
  229. .timeline-item:nth-child(even)::after {
  230. left: 10px;
  231. }
  232. }
  233. </style>
  234. </head>
  235. <!-- Google tag (gtag.js) -->
  236. <script async src="https://www.googletagmanager.com/gtag/js?id=G-JBGGVGLHTP"></script>
  237. <script>
  238. window.dataLayer = window.dataLayer || [];
  239. function gtag() { dataLayer.push(arguments); }
  240. gtag('js', new Date());
  241. gtag('config', 'G-JBGGVGLHTP');
  242. </script>
  243. <body>
  244. <%- include('header') %>
  245. <main class="container">
  246. <section>
  247. <h1>About Us</h1>
  248. <p>Welcome to Art Number Coloring, your go-to destination for high-quality, free printable coloring
  249. pages and digital coloring experiences. We're passionate about bringing creativity and joy to people
  250. of all ages through the art of coloring.</p>
  251. <!-- 新增品牌理念图片 -->
  252. <div class="brand-image">
  253. <img src="/assets/images/brand.webp" alt="People enjoying coloring together">
  254. </div>
  255. <div class="about-grid">
  256. <div class="about-item">
  257. <h3>Our Mission</h3>
  258. <p>At Art Number Coloring, our mission is to provide a diverse collection of coloring pages that
  259. inspire imagination, reduce stress, and promote relaxation, aiming to onboard 1 million new
  260. artists to our platform by 2035. We believe that coloring is not just for kids—it's a
  261. therapeutic activity that can bring out the artist in everyone.</p>
  262. </div>
  263. <div class="about-item">
  264. <h3>Our Vision</h3>
  265. <p>We envision a world where everyone has access to creative outlets that promote mental
  266. well-being and artistic expression. Through our platform, we aim to connect people with
  267. beautiful, engaging coloring content that sparks joy and creativity.</p>
  268. </div>
  269. </div>
  270. </section>
  271. <section>
  272. <h2>About JCCY</h2>
  273. <p>JCCY is a company founded in 2015 that specializes in the development of casual entertainment games.
  274. Several of our games have been well received by users. Among them, "Coloring Book by Numbers" is one
  275. of the most popular coloring by number apps in the world and the most successful ad-driven app,
  276. gaining wide recognition.</p>
  277. <div class="timeline">
  278. <div class="timeline-item">
  279. <div class="timeline-year">2015</div>
  280. <p>JCCY is founded with a vision to create engaging casual games that bring joy to players
  281. worldwide.</p>
  282. </div>
  283. <div class="timeline-item art-related">
  284. <div class="timeline-year">2016</div>
  285. <p>Develops and releases "Coloring Book by Numbers", which becomes a global sensation, <span
  286. class="timeline-metric">reaching 10 million downloads</span> within two years and
  287. winning <span class="timeline-metric">5 international awards</span> for Best Casual Game.
  288. </p>
  289. </div>
  290. <div class="timeline-item">
  291. <div class="timeline-year">2020</div>
  292. <p>Launched the "Jigsaw Puzzle", a puzzle - based casual puzzle game, which has been highly
  293. praised.</p>
  294. </div>
  295. <div class="timeline-item">
  296. <div class="timeline-year">2022</div>
  297. <p>Launched "Art Puzzle", a casual art puzzle game, to further expand the product line.</p>
  298. </div>
  299. <div class="timeline-item">
  300. <div class="timeline-year">2023</div>
  301. <p>Launched "Sudoku" puzzle-solving game and "Find Differences" game, making the product line
  302. start to diversify.</p>
  303. </div>
  304. <div class="timeline-item art-related">
  305. <div class="timeline-year">2024</div>
  306. <p>Introduces premium features to "Coloring Book by Numbers", enhancing the user experience
  307. while maintaining free access, resulting in <span class="timeline-metric">a 300% increase in
  308. user engagement</span>.</p>
  309. </div>
  310. <div class="timeline-item art-related">
  311. <div class="timeline-year">2025</div>
  312. <p>Launches the web version of "Art Number Coloring", bringing high-quality coloring content to
  313. a wider audience.</p>
  314. </div>
  315. </div>
  316. </section>
  317. <section>
  318. <h2>Our Games & Apps</h2>
  319. <p>Over the years, JCCY has developed several successful games and apps that have captured the hearts of
  320. users worldwide. Here are some of our most popular creations:</p>
  321. <div class="games-grid">
  322. <div class="game-card">
  323. <div class="game-image">
  324. <img src="/assets/icon/color-by-number.webp" alt="Coloring Book by Numbers">
  325. </div>
  326. <div class="game-content">
  327. <div class="game-title">Coloring Book by Numbers</div>
  328. <div class="game-desc">A popular coloring app that combines the fun of coloring with the
  329. challenge of numbers. Available on iOS and Android.</div>
  330. <div class="game-badge-container">
  331. <a href="itms-apps://itunes.apple.com/app/id1575480118" target="_blank"
  332. class="game-badge">
  333. <img src="/assets/icon/icon-app-store.svg" alt="Download on the App Store"
  334. style="width:100%">
  335. </a>
  336. <a href="https://play.google.com/store/apps/details?id=com.pcoloring.art.puzzle.color.by.number&pcampaignid=web_share"
  337. target="_blank" class="game-badge">
  338. <img src="/assets/icon/icon-google-play.svg" alt="Get it on Google Play"
  339. style="width:100%">
  340. </a>
  341. </div>
  342. </div>
  343. </div>
  344. <div class="game-card">
  345. <div class="game-image">
  346. <img src="/assets/icon/jigsaw-puzzle.webp" alt="Jigaw Puzzle">
  347. </div>
  348. <div class="game-content">
  349. <div class="game-title">Jigsaw Puzzle</div>
  350. <div class="game-desc">A online jigsaw puzzle games with over 10,000 high-quality images and
  351. different difficulty levels are a boon for puzzle enthusiasts.</div>
  352. <div class="game-badge-container">
  353. <a href="https://apps.apple.com/us/app/jigsaw-puzzle-hd-game/id6453471674"
  354. target="_blank" class="game-badge">
  355. <img src="/assets/icon/icon-app-store.svg" alt="Download on the App Store"
  356. style="width:100%">
  357. </a>
  358. <a href="https://play.google.com/store/apps/details?id=com.pcoloring.puzzle.jigsaw"
  359. target="_blank" class="game-badge">
  360. <img src="/assets/icon/icon-google-play.svg" alt="Get it on Google Play"
  361. style="width:100%">
  362. </a>
  363. </div>
  364. </div>
  365. </div>
  366. <div class="game-card">
  367. <div class="game-image">
  368. <img src="/assets/icon/art-puzzle.webp" alt="Art Puzzle">
  369. </div>
  370. <div class="game-content">
  371. <div class="game-title">Art Puzzle</div>
  372. <div class="game-desc">A brand-new type of art game that combines classic coloring games and
  373. jigsaw puzzle games.</div>
  374. <div class="game-badge-container">
  375. <a href="https://apps.apple.com/us/app/jigsaw-art-puzzle-game/id6499138123"
  376. target="_blank" class="game-badge">
  377. <img src="/assets/icon/icon-app-store.svg" alt="Download on the App Store"
  378. style="width:100%">
  379. </a>
  380. <a href="https://play.google.com/store/apps/details?id=com.pcoloring.jigsaw.art.puzzle"
  381. target="_blank" class="game-badge">
  382. <img src="/assets/icon/icon-google-play.svg" alt="Get it on Google Play"
  383. style="width:100%">
  384. </a>
  385. </div>
  386. </div>
  387. </div>
  388. <div class="game-card">
  389. <div class="game-image">
  390. <img src="/assets/icon/find-difference.webp" alt="Find Difference">
  391. </div>
  392. <div class="game-content">
  393. <div class="game-title">Find Difference</div>
  394. <div class="game-desc">An interesting and challenging puzzle game that tests your
  395. observation skills.</div>
  396. <div class="game-badge-container">
  397. <a href="https://play.google.com/store/apps/details?id=com.find.differences.spot.puzzle"
  398. target="_blank" class="game-badge">
  399. <img src="/assets/icon/icon-google-play.svg" alt="Get it on Google Play"
  400. style="width:100%">
  401. </a>
  402. </div>
  403. </div>
  404. </div>
  405. <div class="game-card">
  406. <div class="game-image">
  407. <img src="/assets/icon/soduko.webp" alt="Sudoku Puzzle - Brain Puzzle">
  408. </div>
  409. <div class="game-content">
  410. <div class="game-title">Sudoku Puzzle</div>
  411. <div class="game-desc">A logic-based number game that trains your brain.</div>
  412. <div class="game-badge-container">
  413. <a href="https://play.google.com/store/apps/details?id=puzzle.sudoku.free.brain.game"
  414. target="_blank" class="game-badge">
  415. <img src="/assets/icon/icon-google-play.svg" alt="Get it on Google Play"
  416. style="width:100%">
  417. </a>
  418. </div>
  419. </div>
  420. </div>
  421. </div>
  422. </section>
  423. <section>
  424. <a href="/contact">
  425. <h2>Contact Us</h2>
  426. </a>
  427. <div class="contact-info">
  428. <h3>Questions? Partnership?</h3>
  429. <p>We'd love to hear from you!</p>
  430. <div class="contact-email">
  431. <img width="32px" src="/assets/svg/email.svg" alt="email">
  432. <a href="mailto:art_number_coloring@jccy-tech.com">Support Or Feedback</a>
  433. </div>
  434. <div class="contact-address">
  435. <div style="display: flex; align-items: center;">
  436. <img width="28px" src="/assets/svg/location.svg" alt="location">
  437. <div class="contact-country">BEIJING, CHINA</div>
  438. </div>
  439. <p>17th Floor, Shining Building, No. 35 Xueyuan Road, Haidian District, Beijing</p>
  440. </div>
  441. </div>
  442. </section>
  443. </main>
  444. <%- include('footer') %>
  445. <script src="/scripts/script.js"></script>
  446. </body>
  447. </html>