|
1 | 1 | <!DOCTYPE html> |
2 | | -<html lang="en"> |
| 2 | +<html lang="en" dir="ltr"> |
3 | 3 | <head> |
4 | 4 | <title>Confitty - Visual Kitty Terminal Configuration Generator</title> |
5 | 5 | <meta charset="UTF-8" /> |
|
43 | 43 | <!-- Canonical URL --> |
44 | 44 | <link rel="canonical" href="https://confitty.app/" /> |
45 | 45 |
|
46 | | - <script src='https://storage.ko-fi.com/cdn/scripts/overlay-widget.js'></script> |
| 46 | + <!-- Performance Hints --> |
| 47 | + <link rel="preconnect" href="https://storage.ko-fi.com" crossorigin /> |
| 48 | + <link rel="dns-prefetch" href="https://storage.ko-fi.com" /> |
| 49 | + |
| 50 | + <!-- Security --> |
| 51 | + <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline' https://storage.ko-fi.com; style-src 'self' 'unsafe-inline'; img-src 'self' data: https:; connect-src 'self'; font-src 'self';" /> |
| 52 | + <meta http-equiv="X-Content-Type-Options" content="nosniff" /> |
| 53 | + <meta http-equiv="X-Frame-Options" content="SAMEORIGIN" /> |
| 54 | + <meta http-equiv="X-XSS-Protection" content="1; mode=block" /> |
| 55 | + <meta name="referrer" content="strict-origin-when-cross-origin" /> |
| 56 | + |
| 57 | + <!-- PWA --> |
| 58 | + <link rel="manifest" href="/manifest.json" /> |
| 59 | + <meta name="mobile-web-app-capable" content="yes" /> |
| 60 | + |
| 61 | + <!-- Verification (add your own) --> |
| 62 | + <!-- <meta name="google-site-verification" content="YOUR_CODE" /> --> |
| 63 | + <!-- <meta name="msvalidate.01" content="YOUR_CODE" /> --> |
47 | 64 | <script> |
48 | 65 | (function () { |
49 | 66 | var saved = localStorage.getItem('confitty-theme'); |
|
112 | 129 | "dateModified": "2026-03-29" |
113 | 130 | } |
114 | 131 | </script> |
| 132 | + |
| 133 | + <!-- FAQ Structured Data for Rich Snippets --> |
| 134 | + <script type="application/ld+json"> |
| 135 | + { |
| 136 | + "@context": "https://schema.org", |
| 137 | + "@type": "FAQPage", |
| 138 | + "mainEntity": [ |
| 139 | + { |
| 140 | + "@type": "Question", |
| 141 | + "name": "What is Confitty?", |
| 142 | + "acceptedAnswer": { |
| 143 | + "@type": "Answer", |
| 144 | + "text": "Confitty is a visual configuration builder for Kitty terminal. It allows you to create beautiful, customized Kitty terminal configs with live preview, 72+ popular themes, and comprehensive settings management without manual editing." |
| 145 | + } |
| 146 | + }, |
| 147 | + { |
| 148 | + "@type": "Question", |
| 149 | + "name": "Is Confitty free to use?", |
| 150 | + "acceptedAnswer": { |
| 151 | + "@type": "Answer", |
| 152 | + "text": "Yes, Confitty is completely free and open source. You can use it to generate Kitty terminal configurations at no cost." |
| 153 | + } |
| 154 | + }, |
| 155 | + { |
| 156 | + "@type": "Question", |
| 157 | + "name": "How do I use my exported kitty.conf file?", |
| 158 | + "acceptedAnswer": { |
| 159 | + "@type": "Answer", |
| 160 | + "text": "After exporting your kitty.conf from Confitty, save it to ~/.config/kitty/ directory. Then reload Kitty by pressing Ctrl+Shift+F5 or use the 'kitten @ load-config' command." |
| 161 | + } |
| 162 | + }, |
| 163 | + { |
| 164 | + "@type": "Question", |
| 165 | + "name": "What color themes are available in Confitty?", |
| 166 | + "acceptedAnswer": { |
| 167 | + "@type": "Answer", |
| 168 | + "text": "Confitty offers 72+ professional color themes including Dracula, Nord, Tokyo Night, Catppuccin variants, Gruvbox, Kanagawa, Ayu, Monokai, Solarized, VS Code, GitHub, iTerm2, and 15 original Confitty-branded themes." |
| 169 | + } |
| 170 | + }, |
| 171 | + { |
| 172 | + "@type": "Question", |
| 173 | + "name": "Can I import my existing kitty.conf file?", |
| 174 | + "acceptedAnswer": { |
| 175 | + "@type": "Answer", |
| 176 | + "text": "Yes, Confitty supports importing existing kitty.conf files. Simply click the Import button and select your configuration file. Confitty will parse it and populate the visual editor with your current settings." |
| 177 | + } |
| 178 | + } |
| 179 | + ] |
| 180 | + } |
| 181 | + </script> |
| 182 | + |
| 183 | + <!-- Ko-fi Support Script --> |
| 184 | + <script src='https://storage.ko-fi.com/cdn/scripts/overlay-widget.js' defer></script> |
115 | 185 | </head> |
116 | 186 | <body> |
117 | 187 | <app-root> |
|
0 commit comments