| <!DOCTYPE html> |
| <html lang="en" class="scroll-smooth"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Work | Clarity Engineered</title> |
| <link rel="stylesheet" href="style.css"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet"> |
| </head> |
| <body class="font-sans bg-white text-primary antialiased"> |
| <custom-navbar></custom-navbar> |
| <main class="max-w-3xl mx-auto px-6 py-32"> |
| <section class="space-y-4"> |
| <h1 class="text-4xl font-medium tracking-tight">Selected Work</h1> |
| <p class="text-secondary max-w-2xl"> |
| Projects where the solution wasn't obvious and the constraints were meaningful. |
| </p> |
| </section> |
|
|
| <div class="section-divider"></div> |
|
|
| <section class="space-y-20"> |
| <article class="border-t border-divider pt-8 space-y-6"> |
| <h2 class="text-2xl font-medium">Design System Architecture</h2> |
| <div class="space-y-4"> |
| <div> |
| <h3 class="text-sm font-medium text-secondary">Initial assumption</h3> |
| <p>That atomic design principles would scale indefinitely.</p> |
| </div> |
| <div> |
| <h3 class="text-sm font-medium text-secondary">Decision taken</h3> |
| <p>Implemented a hybrid system with domain-specific constraints.</p> |
| </div> |
| <div> |
| <h3 class="text-sm font-medium text-secondary">Outcome</h3> |
| <p>Reduced component library size by 40% while increasing flexibility.</p> |
| </div> |
| </div> |
| </article> |
|
|
| <article class="border-t border-gray-100 pt-8 space-y-6"> |
| <h2 class="text-2xl font-medium">Performance Optimization</h2> |
| <div class="space-y-4"> |
| <div> |
| <h3 class="text-sm font-medium text-secondary">Initial assumption</h3> |
| <p>That all performance issues could be solved with caching.</p> |
| </div> |
| <div> |
| <h3 class="text-sm font-medium text-secondary">Decision taken</h3> |
| <p>Redesigned data flow architecture to minimize requests.</p> |
| </div> |
| <div> |
| <h3 class="text-sm font-medium text-secondary">Outcome</h3> |
| <p>Reduced average page load time from 2.8s to 0.9s.</p> |
| </div> |
| </div> |
| </article> |
| </section> |
| </div> |
| </main> |
|
|
| <custom-footer></custom-footer> |
| <script src="components/navbar.js"></script> |
| <script src="components/footer.js"></script> |
| <script>feather.replace();</script> |
| </body> |
| </html> |