-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #57 from MaartenVercammen/frontend-butmakeitfancy
Frontend butmakeitfancy
- Loading branch information
Showing
25 changed files
with
659 additions
and
253 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
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
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
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
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
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
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
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
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
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
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,21 @@ | ||
import React from 'react'; | ||
import Header from './Header'; | ||
import style from './Home.module.css'; | ||
import Navbar from './Navbar'; | ||
import CreateRecipe from '../recipe/CreateRecipe'; | ||
|
||
const Explore: React.FC = () => { | ||
return ( | ||
<> | ||
<div className={style.homePage}> | ||
<Header /> | ||
<div className={style.homeContent}> | ||
<CreateRecipe /> | ||
</div> | ||
<Navbar /> | ||
</div> | ||
</> | ||
); | ||
}; | ||
|
||
export default Explore; |
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,22 @@ | ||
import React from 'react'; | ||
import Swipe from '../swipe/swipe'; | ||
import Header from './Header'; | ||
import style from './Home.module.css'; | ||
import Navbar from './Navbar'; | ||
import GetRecipes from '../recipe/GetRecipes'; | ||
|
||
const Explore: React.FC = () => { | ||
return ( | ||
<> | ||
<div className={style.homePage}> | ||
<Header /> | ||
<div className={style.homeContent}> | ||
<GetRecipes /> | ||
</div> | ||
<Navbar /> | ||
</div> | ||
</> | ||
); | ||
}; | ||
|
||
export default Explore; |
This file was deleted.
Oops, something went wrong.
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
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,23 @@ | ||
import React from 'react'; | ||
import Swipe from '../swipe/swipe'; | ||
import Header from './Header'; | ||
import style from './Home.module.css'; | ||
import Navbar from './Navbar'; | ||
import GetRecipe from '../recipe/GetRecipe'; | ||
import GetLikedRecipes from '../recipe/GetLikedRecipes'; | ||
|
||
const Liked: React.FC = () => { | ||
return ( | ||
<> | ||
<div className={style.homePage}> | ||
<Header /> | ||
<div className={style.homeContent}> | ||
<GetLikedRecipes /> | ||
</div> | ||
<Navbar /> | ||
</div> | ||
</> | ||
); | ||
}; | ||
|
||
export default Liked; |
Oops, something went wrong.