diff --git a/public/images/contact/banner-contact.png b/public/images/contact/banner-contact.png new file mode 100644 index 0000000..c465bb4 Binary files /dev/null and b/public/images/contact/banner-contact.png differ diff --git a/public/images/contact/contact.png b/public/images/contact/contact.png deleted file mode 100644 index 22492dd..0000000 Binary files a/public/images/contact/contact.png and /dev/null differ diff --git a/src/components/common/header/header.module.scss b/src/components/common/header/header.module.scss index 8375c09..8a81b16 100644 --- a/src/components/common/header/header.module.scss +++ b/src/components/common/header/header.module.scss @@ -18,6 +18,8 @@ nav { display: flex; align-items: center; + justify-content: space-between; + width: 100%; svg { display: block; @@ -26,7 +28,6 @@ ul { display: flex; - margin: 0 0 0 tovw(122px, 'default', 90px); padding: 0; list-style-type: none; gap: tovw(32px, 'default', 16px); diff --git a/src/components/common/header/index.tsx b/src/components/common/header/index.tsx index 0c1917f..c4680c1 100644 --- a/src/components/common/header/index.tsx +++ b/src/components/common/header/index.tsx @@ -160,15 +160,16 @@ export const Header = () => { ))} + + Join Us + - - Join Us - +
diff --git a/src/components/sections/newsroom/media/index.tsx b/src/components/sections/newsroom/media/index.tsx index e5d8fee..7fda2c8 100644 --- a/src/components/sections/newsroom/media/index.tsx +++ b/src/components/sections/newsroom/media/index.tsx @@ -42,11 +42,13 @@ const Media = ({ data }: Props) => { const [showDialog, setShowDialog] = useState(false) const [videoLink, setVideoLink] = useState('') + const [videoLabel, setVideoLabel] = useState('') const close = () => setShowDialog(false) - const open = (link: string) => { + const open = (link: string, label: string) => { setVideoLink(link) setShowDialog(true) + setVideoLabel(label) } const [sliderRef] = useKeenSlider({ @@ -92,7 +94,9 @@ const Media = ({ data }: Props) => {
open(data?.mediaVideo01Link)} + onClick={() => + open(data?.mediaVideo01Link, data?.mediaVideo01Label) + } > image {
open(data?.mediaVideo02Link)} + onClick={() => + open(data?.mediaVideo02Link, data?.mediaVideo02Label) + } > image {
open(data?.mediaVideo03Link)} + onClick={() => + open(data?.mediaVideo03Link, data?.mediaVideo03Label) + } > image {
open(data?.mediaVideo04Link)} + onClick={() => + open(data?.mediaVideo04Link, data?.mediaVideo04Label) + } > image { ) diff --git a/src/components/sections/newsroom/media/media.module.scss b/src/components/sections/newsroom/media/media.module.scss index 6e2bc0e..d5b86ed 100644 --- a/src/components/sections/newsroom/media/media.module.scss +++ b/src/components/sections/newsroom/media/media.module.scss @@ -7,7 +7,7 @@ position: relative; margin: tovw(140px, 'default', 110px) 0; - padding: tovw(104px, 'default', 90px) 0; + padding: tovw(70px, 'default', 50px); .container { @include respond-to('mobile') { @@ -128,3 +128,12 @@ } } } + +.videolabel { + display: block; + font-family: var(--font-tt-hoves); + font-size: tovw(40px, 'default', 18px); + margin-top: tovw(20px, 'default', 15px); + line-height: 120%; + letter-spacing: -0.02em; +} diff --git a/src/components/sections/partners/contact/contact.module.scss b/src/components/sections/partners/contact/contact.module.scss index 4f052d9..24dbde5 100644 --- a/src/components/sections/partners/contact/contact.module.scss +++ b/src/components/sections/partners/contact/contact.module.scss @@ -143,7 +143,7 @@ padding: tovw(16px, 'default', 12px) tovw(12px, 'default', 10px); margin-top: tovw(20px, 'default', 16px); background: rgb(142 142 142 / 0.1); - border: tovw(1px, 'default', 1px) solid transparent; + border: tovw(1px, 'default', 1px) solid var(--color-grey); border-radius: tovw(8px, 'default', 8px); &:focus { diff --git a/src/css/global.scss b/src/css/global.scss index f034bf5..9a39c59 100644 --- a/src/css/global.scss +++ b/src/css/global.scss @@ -17,6 +17,7 @@ --color-accent: #0000f4; --color-black: #040404; --color-white: #fbfbfb; + --color-grey: #565656; --color-grey-light: #8e8e8e; --color-grey-lightness: #dedede; @@ -150,7 +151,7 @@ p { font-size: tovw(24px, 'default', 18px) !important; padding: tovw(16px, 'default', 11px) tovw(10px, 'default', 7px) !important; background: rgb(142 142 142 / 0.1) !important; - border: tovw(1px, 'default', 1px) solid transparent !important; + border: tovw(1px, 'default', 1px) solid var(--color-grey) !important; border-radius: tovw(8px, 'default', 8px) !important; transition: unset !important;