Skip to content

Commit

Permalink
docs(website): fix image path
Browse files Browse the repository at this point in the history
  • Loading branch information
jourdain committed Sep 15, 2023
1 parent 246196f commit 3d77c93
Show file tree
Hide file tree
Showing 14 changed files with 424 additions and 18 deletions.
8 changes: 4 additions & 4 deletions docs/vitepress/.vitepress/config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ export default defineConfig({
description: "Trame lets you weave various components and technologies into a Web Application solely written in Python",
lastUpdated: true,
head: [
['link', { rel: "apple-touch-icon", sizes: "196x196", href: "/assets/favicons/favicon-196x196.png"}],
['link', { rel: "icon", type: "image/png", sizes: "32x32", href: "/assets/favicons/favicon-32x32.png"}],
['link', { rel: "icon", type: "image/png", sizes: "16x16", href: "/assets/favicons/favicon-16x16.png"}],
['link', { rel: "apple-touch-icon", sizes: "196x196", href: "/trame/logos/favicon-196x196.png"}],
['link', { rel: "icon", type: "image/png", sizes: "32x32", href: "/trame/logos/favicon-32x32.png"}],
['link', { rel: "icon", type: "image/png", sizes: "16x16", href: "/trame/logos/favicon-16x16.png"}],
[
'script',
{ async: '', src: 'https://www.googletagmanager.com/gtag/js?id=G-H4W9XHTJ7X' }
Expand All @@ -27,7 +27,7 @@ export default defineConfig({
search: {
provider: 'local'
},
logo: '/assets/trame-text.ff85ece7.svg',
logo: '/logos/trame-text.svg',
siteTitle: false,
// https://vitepress.dev/reference/default-theme-config
nav: [
Expand Down
19 changes: 5 additions & 14 deletions docs/vitepress/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,20 @@ hero:
features:
- title: 3D Visualization (VTK/ParaView)
icon:
src: /assets/vtk.c9c12cb3.svg
src: /logos/vtk.svg
alt: Pure Python
details: With best-in-class platforms at its core, trame provides complete control of 3D visualizations and data processing. Developers benefit from a write-once environment from trame.
link: https://www.paraview.org/
- title: Open Source
icon:
src: /assets/opensource.8f0bc901.svg
src: /logos/opensource.svg
alt: Pure Python
width: 22
details: trame is an open source project licensed under Apache License Version 2.0 which allows users to create open source or commercial applications without any licensing worries.
link: https://www.kitware.com/open-source/
- title: Rich Features
icon:
src: /assets/python.5aa959ac.svg
src: /logos/python.svg
alt: Pure Python
width: 22
details: trame leverages existing libraries and tools such as Vuetify, Altair, Vega, deck.gl, VTK, ParaView, and more, to create vivid content for visual analytics applications. Trame can be integrated in any Python environment using PyPI or Conda.
Expand All @@ -41,25 +41,16 @@ features:
link: /examples/
- title: Desktop, cloud, Jupyter and HPC
icon:
src: /assets/jupyter.1a86c226.svg
src: /logos/jupyter.svg
alt: Jupyter and more
width: 40
details: Trame applications can be deployed on a desktop, in the cloud, within a Jupyter cell or on HPC environments. Trame simply make your application ubiquitous.
link: /guide/deployment/desktop
- title: Support and Services
icon:
src: /assets/kitware.c9978938.svg
src: /logos/kitware.svg
alt: Kitware Inc.
width: 28
details: Kitware can help you get started, create custom components, or even build full applications. Our team is here to help. Please contact us
link: https://www.kitware.com/contact/
---

<!-- Force assets to be bundled with sha -->
<img src="/assets/logos/trame-text.svg" style="display: none;" />
<img src="/assets/logos/jupyter.svg" style="display: none;" />
<img src="/assets/logos/kitware.svg" style="display: none;" />
<img src="/assets/logos/python.svg" style="display: none;" />
<img src="/assets/logos/opensource.svg" style="display: none;" />
<img src="/assets/logos/vtk.svg" style="display: none;" />
<img src="/assets/logos/vtk.svg" style="display: none;" />
Binary file added docs/vitepress/public/logos/favicon-160x160.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 added docs/vitepress/public/logos/favicon-16x16.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 added docs/vitepress/public/logos/favicon-196x196.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 added docs/vitepress/public/logos/favicon-32x32.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 added docs/vitepress/public/logos/favicon-96x96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/vitepress/public/logos/jupyter.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions docs/vitepress/public/logos/kitware.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/vitepress/public/logos/opensource.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
265 changes: 265 additions & 0 deletions docs/vitepress/public/logos/python.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 3d77c93

Please sign in to comment.