Added autodesk testimonial. (#21794)

Also updated testimonial cards to be more legible.
This commit is contained in:
Maanav Dalal 2024-08-20 10:24:33 -07:00 committed by GitHub
parent 99bfaa3a97
commit d491241b8a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 18 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

View file

@ -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';
@ -61,6 +62,11 @@
src: ATLASLogo,
alt: 'ATLAS'
},
{
href: './testimonials#Autodesk',
src: autodeskLogo,
alt: 'Autodesk'
},
{
href: './testimonials#Bazaarvoice',
src: bazaarvoiceLogo,

View file

@ -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';
@ -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:

View file

@ -24,7 +24,7 @@
<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">
@ -32,8 +32,8 @@
<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>