diff --git a/components/Testimonials.js b/components/Testimonials.js new file mode 100644 index 0000000..52142b5 --- /dev/null +++ b/components/Testimonials.js @@ -0,0 +1,53 @@ +import React, { useRef, useState } from 'react'; +import Image from 'next/image'; +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' +import { faScrewdriverWrench } from '@fortawesome/free-solid-svg-icons' +import { faWindows, faApple } from '@fortawesome/free-brands-svg-icons'; +import styles from './Testimonials.module.css'; + +export default function Testimonials() { + const testimonialData = [ + { + text: `

My hospital had under-billed $75K worth of procedural RVUs which took me 20 + hours of manual chart review over the course of 6 months to recover. OpenAdapt + was able to do this job automatically with just a few clicks. The personalized + service and support were phenomenal. I will definitely be using OpenAdapt to audit + my procedures every month from now on.

`, + author: `Victor Abrich, MD, FHRS; Electrophysiologist at MercyOne Waterloo Heart Care` + }, + { + text:`

We're trying to make a task miner which shows task flow. I use OpenAdapter to record your + interactions and pm4py to make a task flow. +
I query sqlite3 to make data for pm4py.

+ +

Now I can make a simply task flow and still there is something to do.

+ +

Anyway I'm very happy to get here thanks to OpenAdapter!

+ Thank you again for making OpenAdapter`, + author:`Kibeom Kim` + }, + ] + return ( +
+

Testimonials

+
+ + {testimonialData.map((currTestimony) => ( +
+ Photo of quote logo +
+
+


— {currTestimony.author}

+
+ ))} +
+
+ ) +} \ No newline at end of file diff --git a/components/Testimonials.module.css b/components/Testimonials.module.css new file mode 100644 index 0000000..8adcc53 --- /dev/null +++ b/components/Testimonials.module.css @@ -0,0 +1,95 @@ +.header { + font-size: 30px; + background-color: rgb(0, 0, 28); + + text-align: center; + color: whitesmoke; +} + +.card_box { + text-align: center; + background-color: rgb(0, 0, 28); + + overflow-x: auto; + overflow-y: hidden; + + white-space: nowrap; + +} + + .card { + position: relative; + + display: inline-block; + text-overflow: ellipsis; + vertical-align: top; /* Align cards at the top */ + + font-size: medium; + width: 350px; + height: 400px; + margin: 20px; + padding: 20px; + border-radius: 30px; + background: #560DF8; + flex-direction: column; + align: self-align; + align-items: center; + justify-content: center; + } +.card hr{ + padding: 5px; + width: 300px; +} + + + .card:hover { + + //outline: 2px solid rgba(122, 105, 175, 0.6); + background: #A36BF4; + transform: scale(1.05); + transition: background-color 0.5s, color 0.5s, transform 0.5s; + } + .title { + position: absolute; + bottom: 0; + + max-width: 300px; + margin: 5px; + color: whitesmoke; + font-size: 18px; + font-weight: bold; + text-align: center; + padding-bottom: 20px; + + overflow: hidden; + white-space: normal; + } + .card .button:hover { + color: white; + border: 2px solid transparent; + } + .description { + text-align: left; + margin-bottom: 10px; + padding: 0; + font-size: 15px; + + max-height: 250px; + color: whitesmoke; + white-space: initial; + overflow: hidden; + text-overflow: ellipsis; + + + } + .heading { + font-size: 30px; + text-align: center; + color: whitesmoke; + } + .p { + padding:20px; + font-size: 18px; + text-align: center; + color: rgb(204, 194, 194); + } diff --git a/pages/index.js b/pages/index.js index ed38f2b..f7b92e6 100644 --- a/pages/index.js +++ b/pages/index.js @@ -5,7 +5,7 @@ import FeedbackForm from '@components/FeedbackForm'; import Footer from "@components/Footer"; import IndustriesGrid from '@components/IndustriesGrid'; import MastHead from '@components/MastHead'; - +import Testimonials from '@components/Testimonials'; export default function Home() { const [feedbackData, setFeedbackData] = useState({ email: '', @@ -18,6 +18,7 @@ export default function Home() {
+
diff --git a/public/images/quote-left-solid.svg b/public/images/quote-left-solid.svg new file mode 100644 index 0000000..c3974bc --- /dev/null +++ b/public/images/quote-left-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file