We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7a5382 commit 388d68cCopy full SHA for 388d68c
src/app/pages/home/home.component.html
@@ -14,6 +14,10 @@
14
limitations under the License.
15
-->
16
17
+<div class="api-key-banner">
18
+ <p>Open <code>functions/.env</code> and add your Gemini API key.</p>
19
+</div>
20
+
21
<header>
22
<svg
23
class="web"
src/app/pages/home/home.component.scss
@@ -122,3 +122,19 @@ header {
122
}
123
124
125
126
+.api-key-banner {
127
+ position: absolute;
128
+ top: 10px;
129
+ width: 100%;
130
+ display: flex;
131
+ justify-content: center;
132
133
+ & p {
134
+ padding: 16px;
135
+ background-color: var(--primary);
136
+ color: var(--background);
137
+ border-radius: 12px;
138
+ max-width: fit-content;
139
+ }
140
+}
0 commit comments