-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cd8caa6
commit 3925d9a
Showing
11 changed files
with
1,112 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import Link from '@docusaurus/Link'; | ||
import React from 'react'; | ||
import styles from './styles.module.scss'; | ||
import { LinkButton, ButtonContainer } from '/src/theme/Buttons'; | ||
|
||
export default function StudyHeader() { | ||
return ( | ||
<header className={styles.headerSecurity}> | ||
<div className="container"> | ||
<div className={styles.box}> | ||
<div className={styles.logo}></div> | ||
<span>Case Study</span> | ||
<h1>Building an Intelligence Engine</h1> | ||
<div className={styles.headerBox}> | ||
<p> | ||
How Morningstar built a trustworthy, AI-driven financial data | ||
platform with Weaviate | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</header> | ||
); | ||
} |
97 changes: 97 additions & 0 deletions
97
src/components/Service/Morningstar/Header/styles.module.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
.box { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: flex-start; | ||
text-align: left; | ||
margin-bottom: 40px; | ||
|
||
span { | ||
color: #61bb73; | ||
font-size: 1.25rem; | ||
font-weight: 400; | ||
text-transform: uppercase; | ||
} | ||
|
||
.logo { | ||
background-image: url('/img/site/Morningstar.svg'); | ||
background-size: contain; | ||
background-repeat: no-repeat; | ||
width: 12.09331rem; | ||
height: 3.25rem; | ||
flex-shrink: 0; | ||
} | ||
|
||
h1 { | ||
color: #ffffff; | ||
font-size: 2.25rem; | ||
font-weight: 700; | ||
margin-bottom: 1rem; | ||
width: 50%; | ||
@media screen and (max-width: 900px) { | ||
width: 100%; | ||
} | ||
} | ||
|
||
.headerBox { | ||
width: 50%; | ||
@media screen and (max-width: 900px) { | ||
width: 100%; | ||
} | ||
|
||
p { | ||
color: #ffffff; | ||
width: 80%; | ||
@media screen and (max-width: 1000px) { | ||
width: 100%; | ||
} | ||
} | ||
} | ||
} | ||
|
||
.buttonOutline { | ||
border-radius: 0.3125rem; | ||
border: 1px solid #130c49; | ||
background: #f4f4f4; | ||
padding: 9px; | ||
color: #130c49; | ||
text-align: center; | ||
font-family: Inter; | ||
font-size: 1rem; | ||
font-style: normal; | ||
font-weight: 400; | ||
line-height: 157.33%; | ||
transition: all 1s ease-out; | ||
} | ||
.buttonOutline:hover { | ||
border-radius: 0.3125rem; | ||
outline: 1px solid #130c49; | ||
background: rgb(15, 0, 50); | ||
color: #fff; | ||
font-weight: 400; | ||
} | ||
|
||
.headerSecurity { | ||
background: #130c49; | ||
background-image: url('/img/site/header-bg.svg'); | ||
background-size: cover; | ||
|
||
@media screen and (max-width: 500px) { | ||
background-image: url('/img/site/header-bg.svg'); | ||
background-size: 100%; | ||
background-position-y: bottom; | ||
background-repeat: no-repeat; | ||
} | ||
} | ||
|
||
.topText { | ||
color: #130c49; | ||
text-align: center; | ||
font-family: Plus Jakarta Sans; | ||
font-size: 1.25rem; | ||
font-style: normal; | ||
font-weight: 400; | ||
line-height: 120%; /* 1.5rem */ | ||
text-transform: uppercase; | ||
margin: 10px 0px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import React from 'react'; | ||
import { ButtonContainer } from '../../../../theme/Buttons'; | ||
import styles from './styles.module.scss'; | ||
import { LinkButton } from '/src/theme/Buttons'; | ||
import Link from '@docusaurus/Link'; | ||
|
||
export default function Integrations() { | ||
return ( | ||
<div className={styles.integrationsSection}> | ||
<div className="container"> | ||
<div className={styles.teamContainer}> | ||
<h3> | ||
Our team and community are here to support you at every stage of | ||
your AI journey. | ||
</h3> | ||
<div className={styles.buttons}> | ||
<Link className={styles.buttonGradient} to="#contact-sales"> | ||
Get in Touch | ||
</Link> | ||
<Link className={styles.buttonOutline} to="/services"> | ||
Check our Services | ||
</Link> | ||
</div> | ||
<div className={styles.parentGrid}> | ||
<div className={styles.imageGrid1}> </div> | ||
<div className={styles.imageGrid2}> </div> | ||
<div className={styles.imageGrid3}> </div> | ||
<div className={styles.imageGrid4}> </div> | ||
<div className={styles.imageGrid5}> </div> | ||
<div className={styles.imageGrid6}> </div> | ||
</div> | ||
<div className={styles.mobileImage}></div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} |
Oops, something went wrong.