Skip to content

Commit

Permalink
Merge pull request #21 from Gateway-DAO/feat/add-top-text-into-landin…
Browse files Browse the repository at this point in the history
…g-page

chore: added a top text into landing page
  • Loading branch information
boscocg authored Oct 16, 2023
2 parents 863833c + bdd76f8 commit ace59ec
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions src/app/(landing)/components/header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ import { joinClasses } from '@/app/(landing)/utils/function';
import LenisManager, { IInstanceOptions } from '@/app/(landing)/utils/scroll';
// import Link from '@/components/gtw-link';

import { Stack, Typography } from '@mui/material';

import Button from '../button';
import ArrowRight2 from '../icons/arrow-right-2';
import styles from './header.module.scss';
Expand Down Expand Up @@ -67,6 +69,31 @@ export default function Header() {
)}
ref={navRef}
>
<Stack
sx={{
width: '100%',
background: '#E6D5FA',
height: 40,
alignItems: 'center',
flexDirection: 'row',
}}
>
<Wrapper className={styles.wrapper}>
<Stack
direction="row"
gap={0.5}
sx={{ alignItems: 'center', '& a': { textDecoration: 'none' } }}
>
<Typography color="common.black">
Product Marketing Engagements can now be found at
</Typography>
<Link href="https://tryodyssey.xyz">
<Typography color="primary">tryodyssey.xyz</Typography>
</Link>
</Stack>
</Wrapper>
</Stack>

<Wrapper className={styles.wrapper}>
{isMobile || isTablet ? (
<>
Expand Down

0 comments on commit ace59ec

Please sign in to comment.