-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #197 from ibm-client-engineering/sam-updates
Added mission and contact us pages
- Loading branch information
Showing
14 changed files
with
284 additions
and
69 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,77 @@ | ||
@use '@carbon/react/scss/spacing' as *; | ||
@use '@carbon/react/scss/type' as *; | ||
@use '@carbon/react/scss/breakpoint' as *; | ||
@use '@carbon/react/scss/theme' as *; | ||
|
||
|
||
.cds--content { | ||
padding-top: 0; | ||
padding-left: 0; | ||
padding-right: 0; | ||
} | ||
|
||
.contact__grid { | ||
max-inline-size: 100%; | ||
padding-left: 0; | ||
padding-right: 0; | ||
} | ||
|
||
.contact_banner__row { | ||
display: flex; | ||
width: 100%; | ||
height: 260px; | ||
background-color: #F4F4F4; | ||
margin-left: 0; | ||
margin-right: 0; | ||
vertical-align: middle; | ||
|
||
} | ||
|
||
.body__row { | ||
width: 100%; | ||
margin-left: 0; | ||
margin-right: 0; | ||
justify-content: center; | ||
} | ||
|
||
.title__column { | ||
flex: 1 1 auto; | ||
position: relative; | ||
} | ||
|
||
.banner-title { | ||
@include type-style ('heading-06'); | ||
padding-top: 64px; | ||
padding-left: 32px; | ||
} | ||
|
||
.assistant_img__container { | ||
background-image: url("./assistant.png"); | ||
background-repeat: no-repeat; | ||
background-size: contain; | ||
background-position: center; | ||
width: 50%; | ||
} | ||
|
||
.form__column { | ||
margin-top: 5vh; | ||
margin-left: 10vw; | ||
margin-right: 10vw; | ||
margin-bottom: 5vh; | ||
max-width: 70%; | ||
display: flex; | ||
} | ||
|
||
|
||
.monday__form { | ||
border: 0; | ||
justify-self: center; | ||
//box-shadow: 5px 5px 56px 0px rgba(0,0,0,0.25); | ||
} | ||
|
||
.form-wrapper-component .form-content-component { | ||
border-style: solid; | ||
border-color: #E0E0E0; | ||
border-width: 4px; | ||
box-shadow: none; | ||
} |
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,30 @@ | ||
'use client'; | ||
|
||
import React, { useState } from 'react'; | ||
import './contact.scss'; | ||
import {Row, Column, FlexGrid, TextInput, TextArea, Button} from '@carbon/react'; | ||
|
||
|
||
const ContactUs = () => { | ||
|
||
return ( | ||
<FlexGrid className="contact__grid"> | ||
<Row className='contact_banner__row'> | ||
<Column className="title__column" lg={8}> | ||
<p className="banner-title">Contact Us</p> | ||
</Column> | ||
<Column className='assistant_img__container' lg={8}> | ||
</Column> | ||
|
||
</Row> | ||
<Row className="body__row" lg={10}> | ||
<Column className='form__column' lg={6}> | ||
<iframe src="https://forms.monday.com/forms/embed/4414a889642bf5258f8c63f7155748cb?r=use1" width="1400" height="1200" align="center" className="monday__form"></iframe> | ||
</Column> | ||
</Row> | ||
</FlexGrid> | ||
); | ||
}; | ||
|
||
export default ContactUs; | ||
|
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Oops, something went wrong.