Skip to content

Commit

Permalink
Import screenshots
Browse files Browse the repository at this point in the history
This reverts commit c6a6e4e.
  • Loading branch information
jbytes1027 committed Apr 17, 2024
1 parent 19942b0 commit 896f3fa
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
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

0 comments on commit 896f3fa

Please sign in to comment.