| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>CAKE.com - One suite, one team</title> |
| <style> |
| * { |
| margin: 0; |
| padding: 0; |
| box-sizing: border-box; |
| } |
| |
| body { |
| font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; |
| line-height: 1.6; |
| color: #333; |
| background: #fff; |
| } |
| |
| |
| header { |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| padding: 20px 40px; |
| border-bottom: 1px solid #eee; |
| } |
| |
| .logo { |
| display: flex; |
| align-items: center; |
| gap: 5px; |
| } |
| |
| .logo-icon { |
| width: 32px; |
| height: 32px; |
| background: #4a90e2; |
| border-radius: 6px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: white; |
| font-weight: bold; |
| font-size: 16px; |
| } |
| |
| .logo-text { |
| font-weight: 700; |
| font-size: 24px; |
| color: #000; |
| } |
| |
| .social-icon { |
| width: 28px; |
| height: 28px; |
| background: #4a90e2; |
| border-radius: 6px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: white; |
| text-decoration: none; |
| font-size: 14px; |
| } |
| |
| .nav-top { |
| display: flex; |
| gap: 30px; |
| align-items: center; |
| } |
| |
| .nav-top a { |
| text-decoration: none; |
| color: #333; |
| font-size: 14px; |
| } |
| |
| .nav-top a:hover { |
| color: #4a90e2; |
| } |
| |
| .btn-get-started { |
| background: #4a90e2; |
| color: white; |
| padding: 10px 20px; |
| border-radius: 6px; |
| text-decoration: none; |
| font-weight: 600; |
| } |
| |
| .nav-bottom { |
| display: flex; |
| gap: 30px; |
| padding: 15px 40px; |
| border-top: 1px solid #eee; |
| } |
| |
| .nav-bottom a { |
| text-decoration: none; |
| color: #333; |
| font-size: 15px; |
| } |
| |
| .nav-bottom a:hover { |
| color: #4a90e2; |
| } |
| |
| .nav-bottom a.active { |
| color: #4a90e2; |
| } |
| |
| |
| .hero { |
| text-align: center; |
| padding: 60px 40px; |
| } |
| |
| .hero h1 { |
| font-size: 48px; |
| margin-bottom: 20px; |
| font-weight: 700; |
| } |
| |
| .hero p { |
| font-size: 18px; |
| color: #666; |
| max-width: 600px; |
| margin: 0 auto; |
| } |
| |
| |
| .team-collage { |
| padding: 40px; |
| max-width: 1000px; |
| margin: 0 auto; |
| } |
| |
| .team-collage-row { |
| display: grid; |
| grid-template-columns: repeat(4, 1fr); |
| gap: 20px; |
| margin-bottom: 20px; |
| } |
| |
| .team-collage-row.bottom { |
| grid-template-columns: repeat(2, 1fr); |
| } |
| |
| .team-collage img { |
| width: 100%; |
| height: auto; |
| border-radius: 12px; |
| object-fit: cover; |
| display: block; |
| } |
| |
| .team-collage .team-collage-row:not(.bottom) img { |
| height: 140px; |
| } |
| |
| .team-collage .team-collage-row.bottom img { |
| height: 160px; |
| } |
| |
| .leader-photo { |
| width: 200px; |
| height: 240px; |
| border-radius: 12px; |
| object-fit: cover; |
| display: block; |
| } |
| |
| |
| .timeline { |
| padding: 60px 40px; |
| max-width: 1000px; |
| margin: 0 auto; |
| position: relative; |
| } |
| |
| .timeline::before { |
| content: ''; |
| position: absolute; |
| left: 20px; |
| top: 0; |
| bottom: 0; |
| width: 2px; |
| background: #c4d4ed; |
| } |
| |
| .timeline-item { |
| display: flex; |
| gap: 40px; |
| margin-bottom: 50px; |
| position: relative; |
| } |
| |
| .timeline-item::before { |
| content: ''; |
| position: absolute; |
| left: 18px; |
| top: 8px; |
| width: 12px; |
| height: 12px; |
| background: #c4d4ed; |
| border-radius: 50%; |
| } |
| |
| .timeline-year { |
| font-size: 24px; |
| font-weight: 600; |
| min-width: 80px; |
| } |
| |
| .timeline-content { |
| font-size: 16px; |
| color: #444; |
| } |
| |
| .cookie-banner { |
| position: absolute; |
| right: 20px; |
| top: 28%; |
| background: #222; |
| color: white; |
| padding: 10px 15px; |
| border-radius: 8px; |
| display: none; |
| align-items: center; |
| gap: 10px; |
| z-index: 1000; |
| } |
| |
| .cookie-banner.show { |
| display: flex; |
| } |
| |
| .cookie-banner a { |
| color: #4a90e2; |
| text-decoration: underline; |
| } |
| |
| .close-btn { |
| background: none; |
| border: none; |
| color: white; |
| cursor: pointer; |
| padding: 5px; |
| } |
| |
| |
| .stats-section { |
| background: #f8f9fa; |
| padding: 60px 40px; |
| text-align: center; |
| border-radius: 16px; |
| margin: 60px auto; |
| max-width: 1000px; |
| } |
| |
| .stats-section h2 { |
| font-size: 32px; |
| margin-bottom: 40px; |
| } |
| |
| .stats-grid { |
| display: grid; |
| grid-template-columns: repeat(5, 1fr); |
| gap: 40px; |
| } |
| |
| .stat-item h3 { |
| font-size: 48px; |
| color: #4a90e2; |
| margin-bottom: 10px; |
| } |
| |
| .stat-item p { |
| font-size: 14px; |
| color: #666; |
| text-transform: uppercase; |
| letter-spacing: 1px; |
| } |
| |
| |
| .leadership { |
| padding: 60px 40px; |
| text-align: center; |
| } |
| |
| .leadership h2 { |
| font-size: 36px; |
| margin-bottom: 40px; |
| } |
| |
| .leadership-grid { |
| display: grid; |
| grid-template-columns: repeat(4, 1fr); |
| gap: 30px; |
| max-width: 1000px; |
| margin: 0 auto; |
| } |
| |
| .leadership-row { |
| display: grid; |
| grid-template-columns: repeat(4, 1fr); |
| gap: 30px; |
| } |
| |
| .leadership-row.second { |
| grid-template-columns: repeat(2, 1fr); |
| justify-content: center; |
| } |
| |
| .leader-card { |
| display: flex; |
| flex-direction: column; |
| align-items: center; |
| } |
| |
| .leader-photo { |
| width: 200px; |
| height: 240px; |
| border-radius: 12px; |
| object-fit: cover; |
| margin-bottom: 20px; |
| } |
| |
| .leader-name { |
| font-size: 20px; |
| font-weight: 600; |
| margin-bottom: 8px; |
| } |
| |
| .leader-title { |
| font-size: 14px; |
| color: #666; |
| } |
| |
| |
| footer { |
| background: #f8f9fa; |
| padding: 60px 40px 20px; |
| margin-top: 80px; |
| } |
| |
| .footer-content { |
| display: grid; |
| grid-template-columns: 1fr 1fr 1fr 1fr; |
| gap: 40px; |
| max-width: 1000px; |
| margin: 0 auto 40px; |
| } |
| |
| .footer-column { |
| display: flex; |
| flex-direction: column; |
| gap: 20px; |
| } |
| |
| .footer-logo { |
| font-size: 24px; |
| font-weight: 700; |
| color: #333; |
| } |
| |
| .footer-contact { |
| font-size: 13px; |
| color: #666; |
| line-height: 1.8; |
| } |
| |
| .footer-social-icons { |
| display: flex; |
| gap: 8px; |
| } |
| |
| .footer-social-icons a { |
| width: 32px; |
| height: 32px; |
| background: #4a90e2; |
| border-radius: 6px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: white; |
| text-decoration: none; |
| font-size: 16px; |
| } |
| |
| .footer-section h3 { |
| font-size: 16px; |
| font-weight: 600; |
| margin-bottom: 15px; |
| color: #333; |
| } |
| |
| .footer-section ul { |
| list-style: none; |
| } |
| |
| .footer-section li { |
| margin-bottom: 8px; |
| } |
| |
| .footer-section a { |
| text-decoration: none; |
| color: #666; |
| font-size: 14px; |
| } |
| |
| .footer-section a:hover { |
| color: #4a90e2; |
| } |
| |
| .footer-bottom { |
| display: flex; |
| justify-content: space-between; |
| padding-top: 20px; |
| border-top: 1px solid #eee; |
| font-size: 12px; |
| color: #999; |
| } |
| |
| .mobile-menu-btn { |
| display: none; |
| background: none; |
| border: none; |
| font-size: 24px; |
| cursor: pointer; |
| } |
| |
| .mobile-menu { |
| display: none; |
| position: fixed; |
| top: 60px; |
| left: 0; |
| right: 0; |
| background: white; |
| padding: 20px; |
| border-bottom: 1px solid #eee; |
| z-index: 999; |
| } |
| |
| .mobile-menu.active { |
| display: block; |
| } |
| |
| .mobile-menu a { |
| display: block; |
| padding: 15px 0; |
| text-decoration: none; |
| color: #333; |
| font-size: 16px; |
| border-bottom: 1px solid #eee; |
| } |
| |
| |
| @media (max-width: 1024px) { |
| .team-collage .team-collage-grid { |
| grid-template-columns: repeat(2, 1fr); |
| } |
| .team-collage .team-collage-row { |
| grid-column: span 2; |
| } |
| .leadership-grid { |
| grid-template-columns: repeat(2, 1fr); |
| } |
| .stats-grid { |
| grid-template-columns: repeat(3, 1fr); |
| } |
| .footer-content { |
| grid-template-columns: 1fr 1fr; |
| } |
| .footer-column { |
| flex-direction: column; |
| } |
| } |
| |
| |
| @media (max-width: 768px) { |
| header { |
| padding: 15px 20px; |
| } |
| .nav-top { |
| display: none; |
| } |
| .mobile-menu-btn { |
| display: block; |
| } |
| .nav-bottom { |
| padding: 15px 20px; |
| flex-wrap: wrap; |
| gap: 15px; |
| } |
| .hero h1 { |
| font-size: 32px; |
| } |
| .hero p { |
| font-size: 15px; |
| } |
| .team-collage { |
| padding: 20px; |
| } |
| .team-collage .team-collage-grid { |
| grid-template-columns: 1fr; |
| } |
| .team-collage .team-collage-row { |
| grid-column: auto; |
| } |
| .team-collage img { |
| height: 150px; |
| } |
| .timeline { |
| padding: 40px 20px; |
| } |
| .timeline-item { |
| flex-direction: column; |
| gap: 20px; |
| } |
| .timeline::before { |
| left: 10px; |
| } |
| .timeline-item::before { |
| left: 8px; |
| } |
| .timeline-year { |
| font-size: 18px; |
| } |
| .stats-section { |
| padding: 40px 20px; |
| } |
| .stats-grid { |
| grid-template-columns: 1fr; |
| gap: 30px; |
| } |
| .stats-item h3 { |
| font-size: 32px; |
| } |
| .leadership { |
| padding: 40px 20px; |
| } |
| .leadership-grid { |
| grid-template-columns: 1fr; |
| gap: 40px; |
| } |
| .leader-photo { |
| width: 150px; |
| height: 180px; |
| } |
| .footer-content { |
| grid-template-columns: 1fr; |
| gap: 30px; |
| } |
| .footer-column { |
| flex-direction: column; |
| } |
| .footer-bottom { |
| flex-direction: column; |
| gap: 10px; |
| text-align: center; |
| } |
| .cookie-banner { |
| display: none; |
| } |
| } |
| |
| |
| @media (max-width: 480px) { |
| .hero h1 { |
| font-size: 26px; |
| } |
| .leader-photo { |
| width: 120px; |
| height: 150px; |
| } |
| .leader-name { |
| font-size: 16px; |
| } |
| .leader-title { |
| font-size: 13px; |
| } |
| } |
| </style> |
| </head> |
| <body> |
| <div class="mobile-menu" id="mobileMenu"> |
| <a href="#">Company</a> |
| <a href="#">About</a> |
| <a href="#">Careers</a> |
| <a href="#">Press</a> |
| <a href="#">Customers</a> |
| <a href="#">Contact</a> |
| <a href="#">Brand</a> |
| <a href="#">Blog</a> |
| </div> |
|
|
| <div class="cookie-banner" id="cookieBanner"> |
| <span>We use <a href="#">cookies</a> to optimize your experience.</span> |
| <button class="close-btn" id="closeCookie">✕</button> |
| </div> |
|
|
| <header> |
| <div class="logo"> |
| <div class="logo-icon">c</div> |
| <span class="logo-text">cake.com</span> |
| </div> |
| <nav class="nav-top"> |
| <a href="#">Products</a> |
| <a href="#">Discover</a> |
| <a href="#">Pricing</a> |
| <a href="#" class="btn-get-started">Get started</a> |
| </nav> |
| <button class="mobile-menu-btn" id="mobileMenuBtn">☰</button> |
| </header> |
|
|
| <nav class="nav-bottom"> |
| <a href="#" class="active">Company</a> |
| <a href="#">About</a> |
| <a href="#">Careers</a> |
| <a href="#">Press</a> |
| <a href="#">Customers</a> |
| <a href="#">Contact</a> |
| <a href="#">Brand</a> |
| <a href="#">Blog</a> |
| </nav> |
|
|
| <section class="hero"> |
| <h1>One suite, one team</h1> |
| <p>CAKE.com Inc. helps hundreds of thousands of businesses worldwide organize and run their operations with Clockify, Pumble, and Plaky.</p> |
| </section> |
|
|
| <section class="team-collage"> |
| <div class="team-collage-row"> |
| <img src="images/F41ZsCoyUK-1200.jpeg" alt="Team photos" loading="lazy"> |
| <img src="images/4DbuEo82Dc-1200.jpeg" alt="Team photos" loading="lazy"> |
| <img src="images/4Dh_2krF6E-1200.jpeg" alt="Team photos" loading="lazy"> |
| <img src="images/ZzvdfOhy0r-1200.jpeg" alt="Team photos" loading="lazy"> |
| </div> |
| <div class="team-collage-row bottom"> |
| <img src="images/lDzybZWfUH-1200.jpeg" alt="Team photos" loading="lazy"> |
| <img src="images/UDIrWwPjXo-1200.jpeg" alt="Team photos" loading="lazy"> |
| </div> |
| </section> |
|
|
| <section class="timeline"> |
| <div class="timeline-item"> |
| <div class="timeline-year">2009</div> |
| <div class="timeline-content">Our company started developing products for others.</div> |
| </div> |
| <div class="timeline-item"> |
| <div class="timeline-year">2017</div> |
| <div class="timeline-content">We developed and launched Clockify, our first product for time tracking.</div> |
| </div> |
| <div class="timeline-item"> |
| <div class="timeline-year">2019</div> |
| <div class="timeline-content">Clockify celebrated 1,000,000 registered users.</div> |
| </div> |
| <div class="timeline-item"> |
| <div class="timeline-year">2020</div> |
| <div class="timeline-content">Bloomberg and Wall Street Journal took notice of Clockify, and recognized us as one of the best startups to invest in 2020. We also launched Pumble, a brand new team communication app for businesses.</div> |
| </div> |
| <div class="timeline-item"> |
| <div class="timeline-year">2022</div> |
| <div class="timeline-content">We launched Plaky, project management software, the missing piece of our productivity trinity.</div> |
| </div> |
| <div class="timeline-item"> |
| <div class="timeline-year">2023</div> |
| <div class="timeline-content">The CAKE.com brand launch marked a new era of deeper and more seamless integration across our product range.</div> |
| </div> |
| </section> |
|
|
| <section class="stats-section"> |
| <h2>CAKE.com Inc. in numbers</h2> |
| <div class="stats-grid"> |
| <div class="stat-item"> |
| <h3>2009</h3> |
| <p>FOUNDED</p> |
| </div> |
| <div class="stat-item"> |
| <h3>10m+</h3> |
| <p>USERS</p> |
| </div> |
| <div class="stat-item"> |
| <h3>4</h3> |
| <p>OFFICES</p> |
| </div> |
| <div class="stat-item"> |
| <h3>400+</h3> |
| <p>PEOPLE</p> |
| </div> |
| <div class="stat-item"> |
| <h3>10k+</h3> |
| <p>REVIEWS</p> |
| </div> |
| </div> |
| </section> |
|
|
| <section class="leadership"> |
| <h2>Leadership</h2> |
| <div class="leadership-grid"> |
| <div class="leader-card"> |
| <img src="images/4DbuEo82Dc-1200.jpeg" alt="Biljana Rakić" class="leader-photo" loading="lazy"> |
| <div class="leader-name">Biljana Rakić</div> |
| <div class="leader-title">VP of Human Capital</div> |
| </div> |
| <div class="leader-card"> |
| <img src="images/4Dh_2krF6E-1200.jpeg" alt="Aleksandar Olić" class="leader-photo" loading="lazy"> |
| <div class="leader-name">Aleksandar Olić</div> |
| <div class="leader-title">VP of Product</div> |
| </div> |
| <div class="leader-card"> |
| <img src="images/ZzvdfOhy0r-1200.jpeg" alt="Ljubomir Simin" class="leader-photo" loading="lazy"> |
| <div class="leader-name">Ljubomir Simin</div> |
| <div class="leader-title">VP of Engineering, Clockify</div> |
| </div> |
| <div class="leader-card"> |
| <img src="images/lDzybZWfUH-1200.jpeg" alt="Marko Marić" class="leader-photo" loading="lazy"> |
| <div class="leader-name">Marko Marić</div> |
| <div class="leader-title">VP of Marketing</div> |
| </div> |
| </div> |
| <div class="leadership-row second"> |
| <div class="leader-card"> |
| <img src="images/UDIrWwPjXo-1200.jpeg" alt="Nenad Milanović" class="leader-photo" loading="lazy"> |
| <div class="leader-name">Nenad Milanović</div> |
| <div class="leader-title">Founder & CEO</div> |
| </div> |
| <div class="leader-card"> |
| <img src="images/6jT_Jv15Al-1200.jpeg" alt="Nikola Bosić" class="leader-photo" loading="lazy"> |
| <div class="leader-name">Nikola Bosić</div> |
| <div class="leader-title">VP of Engineering, Pumble & Plaky</div> |
| </div> |
| </div> |
| </section> |
|
|
| <footer> |
| <div class="footer-content"> |
| <div class="footer-column"> |
| <div class="footer-logo">cake.com</div> |
| <div class="footer-contact"> |
| 2100 Geng Rd STE 210, Palo Alto, CA 94303, USA<br> |
| +1-866-348-6668<br> |
| support@cake.com |
| </div> |
| <div class="footer-social-icons"> |
| <a href="#" class="social-icon">🐦</a> |
| <a href="#" class="social-icon">📸</a> |
| <a href="#" class="social-icon">💼</a> |
| </div> |
| </div> |
| <div class="footer-column"> |
| <div class="footer-section"> |
| <h3>Products</h3> |
| <ul> |
| <li><a href="#">Suite</a></li> |
| <li><a href="#">Bundle</a></li> |
| <li><a href="#">Plaky</a></li> |
| <li><a href="#">Pumble</a></li> |
| <li><a href="#">Clockify</a></li> |
| <li><a href="#">Marketplace</a></li> |
| <li><a href="#">Try for free</a></li> |
| <li><a href="#">Log in</a></li> |
| </ul> |
| </div> |
| </div> |
| <div class="footer-column"> |
| <div class="footer-section"> |
| <h3>Company</h3> |
| <ul> |
| <li><a href="#">About</a></li> |
| <li><a href="#">Careers</a></li> |
| <li><a href="#">Press</a></li> |
| <li><a href="#">Customers</a></li> |
| <li><a href="#">Affiliates</a></li> |
| <li><a href="#">Partnerships</a></li> |
| <li><a href="#">Contact</a></li> |
| <li><a href="#">Feedback</a></li> |
| </ul> |
| </div> |
| <div class="footer-section"> |
| <h3>Resources</h3> |
| <ul> |
| <li><a href="#">Brand</a></li> |
| <li><a href="#">Blog</a></li> |
| <li><a href="#">Help Center</a></li> |
| <li><a href="#">Updates</a></li> |
| <li><a href="#">Tutorials</a></li> |
| <li><a href="#">Request a demo</a></li> |
| <li><a href="#">Roadmap</a></li> |
| <li><a href="#">Events</a></li> |
| </ul> |
| </div> |
| </div> |
| <div class="footer-column"> |
| <div class="footer-section"> |
| <h3>Follow us</h3> |
| <div class="footer-social-icons"> |
| <a href="#" class="social-icon">📘</a> |
| <a href="#" class="social-icon">📸</a> |
| <a href="#" class="social-icon">✖</a> |
| <a href="#" class="social-icon">📺</a> |
| <a href="#" class="social-icon">💼</a> |
| </div> |
| </div> |
| </div> |
| </div> |
| <div class="footer-bottom"> |
| <div>© 2026 CAKE.com Inc. All rights reserved.</div> |
| <div> |
| <a href="#">Cookies</a> |
| <a href="#">Terms</a> |
| <a href="#">Privacy</a> |
| <a href="#">Security</a> |
| </div> |
| </div> |
| </footer> |
|
|
| <script> |
| const mobileMenuBtn = document.getElementById('mobileMenuBtn'); |
| const mobileMenu = document.getElementById('mobileMenu'); |
| mobileMenuBtn.addEventListener('click', () => { |
| mobileMenu.classList.toggle('active'); |
| }); |
| |
| const cookieBanner = document.getElementById('cookieBanner'); |
| const closeCookie = document.getElementById('closeCookie'); |
| setTimeout(() => { |
| cookieBanner.classList.add('show'); |
| }, 2000); |
| closeCookie.addEventListener('click', () => { |
| cookieBanner.classList.remove('show'); |
| }); |
| </script> |
| </body> |
| </html> |