Skip to content

Commit f01f304

Browse files
committed
hero and demo comp made and switched to my own logo and other shait
1 parent 98e7784 commit f01f304

File tree

5 files changed

+207
-30
lines changed

5 files changed

+207
-30
lines changed

src/App.jsx

+15-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
1-
import React from "react";
1+
import Demo from "./components/Demo";
2+
import Hero from "./components/Hero";
3+
import "./App.css";
24

35
const App = () => {
4-
return <h1>SUMMA!</h1>;
6+
return (
7+
<main>
8+
<div className="main">
9+
<div className="gradient" />
10+
</div>
11+
12+
<div className="app">
13+
<Hero />
14+
<Demo />
15+
</div>
16+
</main>
17+
);
518
};
619

720
export default App;

0 commit comments

Comments
 (0)