feat: icons

This commit is contained in:
loks0n
2024-04-04 12:08:11 +01:00
parent 07370d9f37
commit ffe930f82f
10 changed files with 7 additions and 7 deletions

View File

@@ -11,13 +11,13 @@ powerful functions architecture and start building the future.
Detailed explanations and deep dives into how you can implement different machine techniques in your Appwrite projects. Detailed explanations and deep dives into how you can implement different machine techniques in your Appwrite projects.
{% cards %} {% cards %}
{% cards_image_item href="/docs/products/ai/computer-vision" title="Computer vision" light="/images/icons/illustrated/dark/auth.png" dark="/images/icons/illustrated/dark/auth.png" %} {% cards_image_item href="/docs/products/ai/computer-vision" title="Computer vision" light="/images/docs/ai/computer-vision-light.png" dark="/images/docs/ai/computer-vision-dark.png" %}
Label and understand the contents of images Label and understand the contents of images
{% /cards_image_item %} {% /cards_image_item %}
{% cards_image_item href="/docs/products/ai/natural-language" title="Natural language processing" light="/images/icons/illustrated/dark/auth.png" dark="/images/icons/illustrated/dark/auth.png" %} {% cards_image_item href="/docs/products/ai/natural-language" title="Natural language processing" light="/images/docs/ai/natural-language-light.png" dark="/images/docs/ai/natural-language-dark.png" %}
Understand and generate human language Understand and generate human language
{% /cards_image_item %} {% /cards_image_item %}
{% cards_image_item href="/docs/products/ai/audio-processing" title="Audio processing" light="/images/icons/illustrated/dark/auth.png" dark="/images/icons/illustrated/dark/auth.png" %} {% cards_image_item href="/docs/products/ai/audio-processing" title="Audio processing" light="/images/docs/ai/audio-processing-light.png" dark="/images/docs/ai/audio-processing-dark.png" %}
Process and generate audio data Process and generate audio data
{% /cards_image_item %} {% /cards_image_item %}
{% /cards %} {% /cards %}

View File

@@ -120,10 +120,10 @@ To catch that moment in time when the page loads, we call our `fetch` function,
Second, it's likely that a user will want to delete one of their ideas from the database. Second, it's likely that a user will want to delete one of their ideas from the database.
We help them do that by adding a delete button in the top right corner of the idea list item, but only on the ideas added by the user itself. We help them do that by adding a delete button in the top right corner of the idea list item, but only on the ideas added by the user itself.
Add the file `IdeasList` from the `componenents` directory and insert the following code: Add the file `IdeasList` from the `components` directory and insert the following code:
```vue ```vue
<!-- componenents/IdeasList.vue --> <!-- components/IdeasList.vue -->
<script setup> <script setup>
import { onMounted } from 'vue'; import { onMounted } from 'vue';

View File

@@ -9,7 +9,7 @@ In our app we want to have a navigation bar that is always visible. We will add
- a logout button if the user is logged in. - a logout button if the user is logged in.
- a login button if the user is not logged in. - a login button if the user is not logged in.
Update the App componenent in `src/App.jsx`: Update the App component in `src/App.jsx`:
```js ```js
import { Login } from "./pages/Login"; import { Login } from "./pages/Login";

View File

@@ -9,7 +9,7 @@ In our app we want to have a navigation bar that is always visible. Use the `use
- a logout button if the user is logged in. - a logout button if the user is logged in.
- a login button if the user is not logged in. - a login button if the user is not logged in.
Update the App componenent in `src/App.vue`: Update the App component in `src/App.vue`:
```vue ```vue
<script setup> <script setup>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB