|
7 | 7 | <script> |
8 | 8 | (function(){ |
9 | 9 | var t = localStorage.getItem('rosetta-theme'); |
| 10 | + if (!t && window.matchMedia) { |
| 11 | + t = window.matchMedia('(prefers-color-scheme: light)').matches ? 'light' : 'dark'; |
| 12 | + } |
10 | 13 | if (t) document.documentElement.setAttribute('data-theme', t); |
11 | 14 | })(); |
12 | 15 | </script> |
13 | 16 | <title>{% if page.url == '/' %}{{ site.seo_title | default: site.title }}{% elsif page.title %}{{ page.title }} | {{ site.seo_title | default: site.title }}{% else %}{{ site.seo_title | default: site.title }}{% endif %}</title> |
| 17 | + <meta name="description" content="Rosetta — Control plane for AI coding agents. Governs behavior, packages proven workflows, and delivers consistent engineering quality across your organization."> |
14 | 18 | <link rel="preconnect" href="https://fonts.googleapis.com"> |
15 | 19 | <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
16 | 20 | <link href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;500;600;700&display=swap" rel="stylesheet"> |
|
19 | 23 | <link rel="apple-touch-icon" href="{{ '/assets/brand/rosetta-favicon.png' | relative_url }}"> |
20 | 24 | </head> |
21 | 25 | <body> |
| 26 | +<a href="#main-content" class="skip-to-content">Skip to content</a> |
22 | 27 | {% include nav.html %} |
23 | | -<main> |
| 28 | +<main id="main-content"> |
24 | 29 | {{ content }} |
25 | 30 | </main> |
26 | 31 | <footer> |
27 | 32 | <div class="footer-wrap"> |
28 | | - <span>© Grid Dynamics — Rosetta</span> |
| 33 | + <span>Copyright © {{ 'now' | date: '%Y' }} Grid Dynamics. All rights reserved.</span> |
29 | 34 | <nav class="footer-nav" aria-label="Footer navigation"> |
30 | 35 | <a href="{{ '/overview/' | relative_url }}">Overview</a> |
31 | | -<a href="{{ '/usage/' | relative_url }}">Usage</a> |
| 36 | + <a href="{{ '/usage/' | relative_url }}">Usage</a> |
32 | 37 | <a href="{{ '/roadmap/' | relative_url }}">Roadmap</a> |
33 | 38 | <a href="{{ '/contribute/' | relative_url }}">Contribute</a> |
34 | 39 | <a href="https://github.com/griddynamics/rosetta" target="_blank" rel="noopener noreferrer">GitHub</a> |
| 40 | + <a href="https://discord.gg/qRUfPGBwWT" target="_blank" rel="noopener noreferrer">Community</a> |
| 41 | + <a href="mailto:rosetta-support@griddynamics.com">Contact Us</a> |
35 | 42 | </nav> |
36 | 43 | </div> |
37 | 44 | </footer> |
|
0 commit comments