FrederickSundeep commited on
Commit
4fa42d6
·
1 Parent(s): 88e0b89
Files changed (2) hide show
  1. src/App.js +0 -1
  2. src/FileUploadForm.js +6 -2
src/App.js CHANGED
@@ -5,7 +5,6 @@ import FileUploadForm from './FileUploadForm';
5
  function App() {
6
  return (
7
  <div className="App">
8
- <h1>🧠 AI Project Generator</h1>
9
  <FileUploadForm />
10
  </div>
11
  );
 
5
  function App() {
6
  return (
7
  <div className="App">
 
8
  <FileUploadForm />
9
  </div>
10
  );
src/FileUploadForm.js CHANGED
@@ -95,9 +95,13 @@ const FileUploadForm = () => {
95
  }}
96
  >
97
  <Paper elevation={6} sx={{ padding: 4, backgroundColor: "#1e1e1e", maxWidth: 600, width: "100%" }}>
98
- <h1>🧠 AI Project Generator</h1>
 
 
 
 
99
  <Typography variant="h5" gutterBottom color="primary">
100
- 📄 Generate Full-Stack Project from Requirements
101
  </Typography>
102
 
103
  <form onSubmit={handleDownload}>
 
95
  }}
96
  >
97
  <Paper elevation={6} sx={{ padding: 4, backgroundColor: "#1e1e1e", maxWidth: 600, width: "100%" }}>
98
+ <Box textAlign="center" my={4}>
99
+ <Typography variant="h4" component="h1">
100
+ 🧠 AI Project Generator
101
+ </Typography>
102
+ </Box>
103
  <Typography variant="h5" gutterBottom color="primary">
104
+ 📄 Generate Full-Stack Project from Requirements (TXT or PDF)
105
  </Typography>
106
 
107
  <form onSubmit={handleDownload}>