Skip to content

Commit

Permalink
Added winarm page, updated router titles.
Browse files Browse the repository at this point in the history
  • Loading branch information
MaanavD committed Sep 28, 2023
1 parent 99b5ba1 commit 9afc955
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
Binary file added src/images/windowsdevkit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

<svelte:head>
{@html oneLight}
<title>ONNX Runtime | Home</title>
<meta property="og:title" content="ONNX Runtime | Home" />
<title>ONNX Runtime | {data.pathname == "/" ? "Home" : data.pathname.substring(1).charAt(0).toUpperCase() + data.pathname.substring(2)}</title>
<meta property="og:title" content="ONNX Runtime | {data.pathname == "/" ? "Home" : data.pathname.substring(1).charAt(0).toUpperCase() + data.pathname.substring(2)}" />
<meta
name="description"
content="Cross-platform accelerated machine learning. Built-in optimizations speed up training and inferencing with your existing technology stack."
Expand Down
3 changes: 1 addition & 2 deletions src/routes/blogs/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,7 @@
}
];
</script>

<div class="container mx-auto">
<div class="container mx-auto">
<div class="flex">
<h1 class="text-5xl my-auto mx-4">Blogs & Announcements</h1>
<div class="ml-5 hidden md:flex">
Expand Down
7 changes: 6 additions & 1 deletion src/routes/components/winarm.svelte
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
<script>
import windowsdevkit from '../../images/windowsdevkit.png'
</script>
<div class="container mx-auto px-10">
<h1 class="text-4xl mb-4">ONNX Runtime + Windows Dev Kit 2023 = NPU powered AI</h1>
<h2 class="text-2xl mb-2">Delivering NPU powered AI capabilities in your apps</h2>
Expand Down Expand Up @@ -47,6 +50,8 @@
<p class="text-xl text-blue-500">Getting Help</p>
For help with ONNX Runtime, you can start a discussion on GitHub or file an issue.
</div>
<div class="m-auto">image</div>
<div class="m-auto">
<img src={windowsdevkit} alt="Windows Dev kit">
</div>
</div>
</div>
4 changes: 4 additions & 0 deletions src/routes/volterra/+page.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<script>
import Winarm from "../components/winarm.svelte";
</script>
<Winarm />

0 comments on commit 9afc955

Please sign in to comment.