Skip to content

Commit b18878e

Browse files
authored
Merge branch 'master' into homepage
2 parents c7c168c + 613615e commit b18878e

File tree

2 files changed

+417
-3
lines changed

2 files changed

+417
-3
lines changed

src/App.tsx

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
import React from "react";
2-
import { Container } from "@mui/material";
2+
import { Container, Stack } from "@mui/material";
33
import Navbar from "./components/Navbar";
44
import Home from "./components/Home";
55
import './App.css';
6+
import Titlebar from "./components/Questions/Titlebar";
67

78
export default function App() {
89
return (
9-
<div className="App">
10+
<>
11+
<Stack gap={5}>
1012
<Navbar />
13+
<Titlebar />
1114
<Home/>
12-
</div>
15+
<Container>hello world!</Container>
16+
</Stack>
17+
</>
1318
);
1419
}

0 commit comments

Comments
 (0)