Skip to content

Commit

Permalink
feat: repalce Header logo
Browse files Browse the repository at this point in the history
  • Loading branch information
DiogoSoaress committed Nov 28, 2024
1 parent d13110e commit af86d16
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
4 changes: 2 additions & 2 deletions public/images/Safenet/Safenet-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion src/components/Safenet/Architecture/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ const Architecture = () => {
setActiveStep((prevActiveStep) => prevActiveStep - 1)
}

console.log('activeStep', activeStep, (activeStep - 1) * 400)
return (
<div className={css.anchor}>
<div className={css.arc} />
Expand Down
3 changes: 2 additions & 1 deletion src/components/Safenet/Layout/index.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import { type ReactElement } from 'react'
import Header from '@/components/common/Header'
import Footer from '@/components/common/Footer'
import SafenetLogo from '@/public/images/Safenet/Safenet-logo.svg'
import css from './styles.module.css'

const SafenetLayout = ({ children }: { children: ReactElement }): ReactElement => (
<div className={css.container}>
<Header customClass={css.transparentHeader} />
<Header customClass={css.transparentHeader} AlternativeLogo={SafenetLogo} />

{children}

Expand Down
Loading

0 comments on commit af86d16

Please sign in to comment.