Skip to content

Commit

Permalink
feat(site): update banner
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed Oct 5, 2023
1 parent 8f9faae commit 79702db
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,18 @@

<script setup lang="ts">
useHead({
htmlAttrs: {
lang: 'en'
},
link: [
{
rel: 'icon',
type: 'image/png',
href: '/favicon-192x192.png'
}
],
titleTemplate: (titleChunk) => {
return titleChunk ? `${titleChunk} | Kestra` : 'Kestra, Open Source Declarative Data Orchestration';
return titleChunk && titleChunk != 'Kestra, Open Source Declarative Data Orchestration' ? `${titleChunk} | Kestra` : 'Kestra, Open Source Declarative Data Orchestration';
}
})
</script>
Binary file modified public/banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/og-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 79702db

Please sign in to comment.