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

homepage content #1

Merged
merged 1 commit into from
Jun 12, 2022
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
36 changes: 25 additions & 11 deletions pages/index.js
Original file line number Diff line number Diff line change
@@ -1,20 +1,34 @@
import * as React from "react"
import Container from "@mui/material/Container"
import Typography from "@mui/material/Typography"
import Box from "@mui/material/Box"
import Link from "../src/Link"
import { Button, Grid } from "@mui/material"

export default function Index() {
return (
<Container maxWidth="sm">
<Box sx={{ my: 4 }}>
<Typography variant="h4" component="h1" gutterBottom>
Next.js hello world
</Typography>
<Link href="/about" color="secondary">
Go to the about page
</Link>
</Box>
<Container maxWidth="lg">
<Grid container alignItems="center">
<Grid sm={12} md={8}>
<img
style={{
width: "75%",
height: "auto",
}}
src="/images/person_vr.jpg"
></img>
</Grid>
<Grid sm={12} md={4}>
<Typography variant="h2">InstaTweet</Typography>
<br />
<Typography variant="p" component="p">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim
ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut
aliquip ex ea commodo consequat.
</Typography>
<br />
<Button variant="outlined">Sign Up</Button>
</Grid>
</Grid>
</Container>
)
}
Binary file added public/images/person_vr.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.