Skip to content

Commit

Permalink
changed head menu (#313)
Browse files Browse the repository at this point in the history
* added some icons

* fixed padding

* restored deleted component

* restoring mobile view

* branching

* nested pages

* pair

* switched component

* working popper

* Working desktop menu bar

---------

Co-authored-by: Gabriel Cardona <2278918+gcardonag@users.noreply.github.com>
  • Loading branch information
oxfordblucher and gcardonag authored Jul 26, 2023
1 parent 3e837ed commit aa833d7
Show file tree
Hide file tree
Showing 6 changed files with 408 additions and 146 deletions.
22 changes: 22 additions & 0 deletions src/components/DesktopPages/Contact.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import React from 'react';
import { Box, TextField } from '@mui/material';
import styles from '../Pages/Pages.module.scss';

const Share = () => {
return (
<div className={styles.pageText}>
<h2>Contact</h2>
<Box
component="form"
autoComplete="off"
>
<h3>Share Feedback</h3>
<TextField id="name" label="Name" variant="outlined" />
<TextField id="email" label="Email" variant="outlined" />
<TextField id="feedback" label="Feedback" variant="outlined" />
</Box>
</div>
);
};

export default Share;
Loading

0 comments on commit aa833d7

Please sign in to comment.