Skip to content

Commit

Permalink
Added autodesk testimonial. (#21794)
Browse files Browse the repository at this point in the history
Also updated testimonial cards to be more legible.
  • Loading branch information
MaanavD authored Aug 20, 2024
1 parent 99bfaa3 commit d491241
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
Binary file added src/images/logos/autodesk-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions src/routes/components/customers.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import antgroupLogo from '../../images/logos/antgroup-logo.png';
import algoriddimLogo from '../../images/logos/algoriddim-logo.png';
import ATLASLogo from '../../images/logos/ATLAS-logo.png';
import autodeskLogo from '../../images/logos/autodesk-logo.png';
import bazaarvoiceLogo from '../../images/logos/bazaarvoice-logo.png';
import camoLogo from '../../images/logos/camo-logo.png';
import cephableLogo from '../../images/logos/cephable-logo.png';
Expand Down Expand Up @@ -61,6 +62,11 @@
src: ATLASLogo,
alt: 'ATLAS'
},
{
href: './testimonials#Autodesk',
src: autodeskLogo,
alt: 'Autodesk'
},
{
href: './testimonials#Bazaarvoice',
src: bazaarvoiceLogo,
Expand Down
9 changes: 9 additions & 0 deletions src/routes/testimonials/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import antgrouplogo from '../../images/logos/antgroup-logo.png';
import algoriddimLogo from '../../images/logos/algoriddim-logo.png';
import atlaslogo from '../../images/logos/ATLAS-logo.png';
import autodesklogo from '../../images/logos/autodesk-logo.png';
import bazaarvoicelogo from '../../images/logos/bazaarvoice-logo.png';
import camologo from '../../images/logos/camo-logo.png';
import cephablelogo from '../../images/logos/cephable-logo.png';
Expand Down Expand Up @@ -77,6 +78,14 @@
imgsrc: atlaslogo,
imgalt: 'Atlas Experiment logo'
},
{
title: 'Autodesk',
quote:
"Autodesk Flame's use of ONNX Runtime offers major advantages with cross-platform compatibility and performance, providing artists the flexibility and interactivity they expect. This allows them to make use of machine learning models directly in Flame's creative toolset, augmenting the quality of their work and increasing the software's expandability. Microsoft's ONNX Runtime team has provided expert guidance and support throughout the development process, enabling us to put AI-powered creative tools in the hands of artists seeking high-quality VFX and finishing solutions.",
author: 'Louis Martin, Sr. Manager of Software Development for Autodesk Flame',
imgsrc: autodesklogo,
imgalt: 'Autodesk logo'
},
{
title: 'Bazaarvoice',
quote:
Expand Down
6 changes: 3 additions & 3 deletions src/routes/testimonials/testimonial-card.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@
<article
on:mouseenter={handleEnter}
on:mouseleave={handleLeave}
class="max-w-md mx-auto bg-blue-100 rounded-sm overflow-hidden md:max-w-2xl"
class="max-w-md mx-auto bg-blue-300 text-slate-50 rounded-sm overflow-hidden md:max-w-2xl"
id={title}
>
<div class="md:flex">
<div class="md:shrink-0 my-auto">
<img class="md:h-48 w-full hidden md:flex" src={imgsrc} alt={imgalt} />
</div>
<div class="p-8">
<p class="block mt-1 leading-tight font-bold text-neutral text-lg">{title}</p>
<p class="mt-2 text-neutral">{description}</p>
<p class="block mt-1 leading-tight font-bold text-lg">{title}</p>
<p class="mt-2">{description}</p>
<br />
<p class="text-blue-700 text-right">-{author}</p>
</div>
Expand Down

0 comments on commit d491241

Please sign in to comment.