-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
=
committed
Jun 20, 2023
1 parent
01b18f0
commit 991d07e
Showing
5 changed files
with
43 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
export default function App() { | ||
return <h1 className="text-3xl">Hello world!</h1>; | ||
import Header from "./Components/Header/Header"; | ||
import AudioPlayer from "./Components/AudioPlayer/AudioPlayer"; | ||
import Body from "./Components/Body/Body"; | ||
|
||
function App() { | ||
return ( | ||
<main className="grid grid-rows-3r grid-cols-1 items-center justify-center bg-bg-darker w-4/5 h-4/5 p-8 rounded"> | ||
<Header /> | ||
<Body /> | ||
<AudioPlayer /> | ||
</main> | ||
); | ||
} | ||
|
||
export default App; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
function AudioPlayer() { | ||
return <h2>Audio Player</h2>; | ||
} | ||
|
||
export default AudioPlayer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// import { Link } from "react-router-dom"; | ||
import Logo from "./Logo"; | ||
import Socials from "./Socials"; | ||
import Search from "./Search/Search"; | ||
|
||
function Header() { | ||
return ( | ||
<header className="flex justify-between w-full"> | ||
<Logo /> | ||
<Search /> | ||
<Socials /> | ||
</header> | ||
); | ||
} | ||
|
||
export default Header; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export default function Search() { | ||
return <h2> Search </h2>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
function Songs() { | ||
return <h2>Songs </h2>; | ||
} | ||
|
||
export default Songs; |