Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change images #248

Merged
merged 12 commits into from
Nov 7, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion frontend/components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import Image from 'next/image'
import { usePathname } from 'next/navigation'
import { ReactNode } from 'react'

import bg from '../images/bg.png'
import bg from '../images/bg.svg'
import sphere from '../images/sphere.png'

import statueWithCoins from '@images/bg-statue-with-coins.png'
import { useRouter } from 'next/router'
Expand Down Expand Up @@ -90,6 +91,19 @@ export const Layout = ({ children }: LayoutProps) => {
objectFit="cover"
objectPosition="left bottom"
/>
<Image
src={sphere}
alt=""
objectFit="cover"
objectPosition="left bottom"
style={{
width: '50%',
position: 'absolute',
bottom: '-4%',
left: '-5%',
opacity: 0.6,
}}
/>
<span className="absolute -left-[430px] -bottom-24 max-h-[100vh] max-w-[1200px]">
<Image src={statue} alt="" priority />
</span>
Expand Down
Binary file modified frontend/images/bg-statue-with-coins.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified frontend/images/bg-statue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed frontend/images/bg.png
Binary file not shown.
Loading
Loading