Skip to content

Commit a698270

Browse files
authored
Merge pull request #109 from oslabs-beta/ml/headers
remove title headers and clean up
2 parents f4df6b1 + 77832b9 commit a698270

File tree

7 files changed

+1
-26
lines changed

7 files changed

+1
-26
lines changed

client/App.tsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,6 @@ const theme = createTheme({
3131
contrastText: '#fff'
3232
}
3333
},
34-
typography: {
35-
// fontFamily: [
36-
// 'Source Code Pro',
37-
// 'monospace',
38-
// ].join(','),
39-
},
4034
});
4135

4236
const App = () => {

client/assets/photosObj.jsx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
// import serena from './photos/serena.jpg';
2-
// import anshu from './photos/brian-headshot.jpg';
3-
// import brian from './photos/brian-headshot.jpg';
4-
// import lilah from './photos/lilah.JPG';
5-
61
export const photosObj = {
72
serena: './assets/photos/serena.png',
83
brian: './assets/photos/brian-headshot.jpg',

client/components/Clipboard.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import Button from '@mui/material/Button';
77
import DeleteForeverIcon from '@mui/icons-material/DeleteForever';
88
import DownloadIcon from '@mui/icons-material/Download';
99
import TextField from '@mui/material/TextField';
10-
import Typography from '@mui/material/Typography';
1110

1211
import { useAppDispatch, useAppSelector } from '../redux/hooks';
1312
import {
@@ -91,7 +90,6 @@ export const Clipboard = () => {
9190
className='code-container'
9291
data-testid='code-container'
9392
>
94-
<Typography variant="h3" align="center" gutterBottom sx={{ color: '#6E00BB', mb: 0, mt: 5 }}>{projectName}</Typography>
9593
<TextField
9694
className="text-display"
9795
label="Server URL"

client/pages/CodeGenerator.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ export const CodeGenerator = () => {
1111

1212
return (
1313
<div className='page-body'>
14-
<Typography variant="h3" gutterBottom align='center' sx={{ color: '#6E00BB', mb: 3, mt: 2 }}>Test Generator</Typography>
1514
<TestInputForm />
1615
<CodeContainer />
1716
<SaveDataContainer open={showSave} />

client/pages/Contributors.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { ContributorCard } from '../components/ContributorCard';
22
import React from 'react';
33
import { photosObj } from '../assets/photosObj';
4-
import Typography from '@mui/material/Typography';
54

65

76
export const Contributors = () => {
@@ -51,9 +50,6 @@ export const Contributors = () => {
5150

5251
return (
5352
<div className='page-body'>
54-
<div>
55-
<Typography variant="h3" align="center" gutterBottom sx={{ mb: 7, mt: 5, color:'primary.main' }} className="contributors-header">Contributors</Typography>
56-
</div>
5753
<div className="contributors-page">
5854
{users.map((devObj:userObjType, i) => {
5955
return <ContributorCard

client/pages/Documentation.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
import React from 'react';
22
import { photosObj } from '../assets/photosObj';
3-
import Typography from '@mui/material/Typography';
43

54
export const Documentation = () => {
65
return (
76
<div className='page-body'>
8-
<Typography variant="h3" gutterBottom align='center' sx={{ color: '#6E00BB', mb: 4, mt: 5 }}>Documentation</Typography>
97
<div className='documentation-container'>
108
<p className="documentation-headers">Getting started</p>
119
<p className="documentation-p">To start generating a test, simply navigate to our home page, where you will first be prompted to specify the endpoint for your request. </p>

client/stylesheets/styles.scss

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,12 @@
11
body {
22
margin: 0;
3-
//background: rgb(63,94,251);
4-
// background: radial-gradient(circle, rgba(63,94,251,0.14051558123249297) 3%, rgba(130,86,200,0.27777048319327735) 71%, rgba(252,70,107,0.1237088585434174) 96%, rgba(184,79,159,0.32258841036414565) 100%);
53
background-color: #fff;
64
background: rgb(63,94,251);
75
background: radial-gradient(circle, rgba(63,94,251,0.13911502100840334) 0%, rgba(252,70,107,0.0746892507002801) 100%);
86
}
97

108
.page-container {
11-
// margin-left:-120px;
12-
min-width: 300px;
13-
// background-color: #6600ff;
14-
// max-height: 600px;
9+
min-width: 300px;
1510
}
1611

1712
.page-body {

0 commit comments

Comments
 (0)