Skip to content

Commit

Permalink
add quote
Browse files Browse the repository at this point in the history
  • Loading branch information
matuskosut committed Oct 24, 2024
1 parent 2b2d0c1 commit 52b5707
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 6 deletions.
24 changes: 24 additions & 0 deletions pages/.vitepress/theme/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,30 @@
/* font-size: min(1.1em, calc(8px + 1vw)); */
}

.hc-quote-text {
/* color: rgb(0, 0, 0); */
text-align: center;
align-items: center;
justify-content: center;
flex-direction: column;
padding-bottom: 32px;
line-height: 1.5;
font-weight: 600;
font-size: min(1.4em, calc(6px + 2vw));
}

.hc-quote-author {
/* color: rgb(0, 0, 0); */
text-align: center;
align-items: center;
justify-content: center;
flex-direction: column;
padding-bottom: 32px;
line-height: 1.5;
font-style: italic;
font-size: min(1.0em, calc(4px + 1.5vw));
}

.hc-row {
display: grid;
column-gap: 10px;
Expand Down
4 changes: 4 additions & 0 deletions pages/.vitepress/theme/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ import {
faBrain,
faCheck,
faInfinity,
faQuoteLeft,
faQuoteRight,
} from '@fortawesome/free-solid-svg-icons';

library.add(faClipboardCheck)
Expand All @@ -47,6 +49,8 @@ library.add(faPeopleArrows)
library.add(faBrain)
library.add(faCheck)
library.add(faInfinity)
library.add(faQuoteLeft)
library.add(faQuoteRight)

export default {
extends: DefaultTheme,
Expand Down
23 changes: 17 additions & 6 deletions pages/en/researchers/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,6 @@ sidebar: false
</v-sheet>
</v-col>
</v-row>
<v-row>
<v-col cols="12">
<!-- social proof -->
</v-col>
</v-row>
<!-- <div class="hc-title-main font-weight-black">
For researchers
</div> -->
Expand Down Expand Up @@ -114,7 +109,7 @@ sidebar: false

<div class="hc-block">
<div class="hc-block-container">
<v-row>
<v-row class="pb-16">
<v-col cols="12" class="align-self-start v-col-sm-6">
<div class="hc-container-title" style="text-align: left;">
High flexibility
Expand Down Expand Up @@ -170,6 +165,22 @@ sidebar: false
</div>
</v-col>
</v-row>
<v-row class="flex-nowrap mt-16">
<v-col cols="1" style="min-width: 70px">
<font-awesome-icon class="highlight-color" icon="fas fa-quote-left" size="4x" />
</v-col>
<v-col>
<div class="hc-quote-text">
HUNT cloud has brought our productivity to new levels. I&nbsp;would never have imagined that we would analyze so much data on a&nbsp;daily basis. Everything is secure and transparent. And if we have a&nbsp;problem, the HUNT Cloud community is always here to help!
</div>
<div class="hc-quote-author">
Marc Vaudel, University&nbsp;of&nbsp;Bergen and&nbsp;Norwegian&nbsp;Institute&nbsp;of&nbsp;Public&nbsp;Health
</div>
</v-col>
<v-col cols="1" style="min-width: 70px">
<font-awesome-icon class="highlight-color" icon="fas fa-quote-right" size="4x" />
</v-col>
</v-row>
</div>
</div>

Expand Down

0 comments on commit 52b5707

Please sign in to comment.