-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: include a section in the Homepage to introduce Safenet vision
- Loading branch information
1 parent
48ed162
commit 459cd92
Showing
8 changed files
with
22 additions
and
57 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
15 changes: 0 additions & 15 deletions
15
src/components/Home/TextBlockImageManifesto/ManifestoElement.tsx
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
src/components/Home/TextBlockImageManifesto/styles.module.css
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,16 @@ | ||
import { Box } from '@mui/material' | ||
import TextBlockImage, { type TextBlockImageProps } from '@/components/common/TextBlockImage' | ||
|
||
const TextBlockIntroducingSafenet = (props: TextBlockImageProps) => ( | ||
<Box mt={{ xs: '-30px', md: 'auto' }}> | ||
<TextBlockImage {...props}> | ||
<video autoPlay muted playsInline loop width="100%" poster="/images/Safenet/globe-poster.png"> | ||
<source src="/videos/Safenet/Globe.webm" type="video/webm" /> | ||
<source src="/videos/Safenet/Globe.mp4" type="video/mp4" /> | ||
<img src="/images/Safenet/globe-poster.png" alt="Safenet globe" /> | ||
</video> | ||
</TextBlockImage> | ||
</Box> | ||
) | ||
|
||
export default TextBlockIntroducingSafenet |
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