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

Use local screenshots #539

Merged
merged 1 commit into from
Apr 18, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
Binary file added FU.SPA/assets/create-post-view.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 added FU.SPA/assets/discover-posts-view.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 added FU.SPA/assets/friends-view.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 added FU.SPA/assets/post-view.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 8 additions & 4 deletions FU.SPA/src/components/pages/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ import Box from '@mui/material/Box';
import Stack from '@mui/material/Stack';
import Link from '@mui/material/Link';
import Theme from '../../Theme';
import CreatePostScreenshot from '../../../assets/create-post-view.png';
import DiscoverPostScreenshot from '../../../assets/discover-posts-view.png';
import PostViewScreenshot from '../../../assets/post-view.png';
import FriendsViewScreenshot from '../../../assets/friends-view.png';

const Home = () => {
return (
Expand All @@ -18,7 +22,7 @@ const Home = () => {
make friends.
</Typography>
</Box>
<Screenshot src="https://storagefu.blob.core.windows.net/screenshots/discover-posts-view.png" />
<Screenshot src={DiscoverPostScreenshot} />
<Typography variant="h5" sx={{ pt: 2 }}>
Don&apos;t limit yourself to restrictive or random in-game
matchmaking. Find like-minded players and play how you want when you
Expand All @@ -28,16 +32,16 @@ const Home = () => {
If you can&apos;t find a match, make a new post and invite others to
join!
</SectionBig>
<Screenshot src="https://storagefu.blob.core.windows.net/screenshots/create-post-view.png" />
<Screenshot src={CreatePostScreenshot} />
<SectionBig headerText="Link Up">
As a post member, discuss meetup detail, strategize a game plan, or
just chat.
</SectionBig>
<Screenshot src="https://storagefu.blob.core.windows.net/screenshots/post-view.png" />
<Screenshot src={PostViewScreenshot} />
<SectionBig headerText="Stay Connected">
Befriend others to keep in touch and meet up later.
</SectionBig>
<Screenshot src="https://storagefu.blob.core.windows.net/screenshots/friends-view.png" />
<Screenshot src={FriendsViewScreenshot} />
<SectionBig headerText="Showcase" />
<iframe
style={{ width: '100%', aspectRatio: '16/9' }}
Expand Down
Loading