-
Notifications
You must be signed in to change notification settings - Fork 0
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 #31 from 2060-io/29-replace-left-illustration
feat: add new images and add banner with data of services
- Loading branch information
Showing
19 changed files
with
112 additions
and
39 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,42 @@ | ||
'use client' | ||
|
||
import Image from 'next/image' | ||
import React from 'react' | ||
|
||
import { Translations } from '../utils' | ||
|
||
const BannerServiceHologram: React.FC<{ translations: Translations; imageUrl: string; label: string }> = ({ | ||
translations, | ||
imageUrl, | ||
label, | ||
}) => { | ||
return ( | ||
<div> | ||
<div className="-mx-6 w-aut align-middle text-xl text-center py-8 px-3"> | ||
{translations.invited_to.split('{word}').map((part, index, array) => ( | ||
<React.Fragment key={index}> | ||
{part} | ||
{index < array.length - 1 && <strong>{translations.invited_word}</strong>} | ||
</React.Fragment> | ||
))} | ||
</div> | ||
<div className="flex items-center justify-center py-4 bg-[#EAF8F7]"> | ||
<div className="flex items-center space-x-4"> | ||
<div className="flex-shrink-0"> | ||
<Image | ||
src={imageUrl} | ||
alt="service" | ||
width={72} | ||
height={72} | ||
priority={false} | ||
className="p-2 transform transition duration-300 ease-in-out hover:scale-110" | ||
/> | ||
</div> | ||
<div className="text-xl font-semibold">{label}</div> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
export default BannerServiceHologram |
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,3 @@ | ||
export { default as BannerDownloadHolomgram } from './bannerDownloadHologram' | ||
export { default as BannerHologramMessaging } from './bannerHologramMessaging' | ||
export { default as bannerServiceHologram } from './bannerServiceHologram' |
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,2 @@ | ||
export { default as About } from './about' | ||
export { default as Footer } from './footer' |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export { default as NavbarFooter } from './navbarFooter' | ||
export { default as NavBarTopPage } from './navbarTopPage' |
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,3 @@ | ||
export { default as SectionProofOfTrust } from './sectionProofOfTrust' | ||
export { default as SectionStandardsBuilt } from './sectionStandardsBuilt' | ||
export { default as SectionWhatIs } from './sectionWhatIs' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
export { default as Header } from './header' | ||
export { default as QRCodeWithLogo } from './QRCodeWithLogo' | ||
export * from './types' | ||
export { default as useDeviceDetect } from './useDeviceDetect' |
File renamed without changes.
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
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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 was deleted.
Oops, something went wrong.