-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FEAT]: Created ambassador feature (#607)
### Description closes issue #604 1. Designed the ambassador program image 2. Designed the community news and videos images 3. Created ambassador container
- Loading branch information
Showing
13 changed files
with
66 additions
and
5 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,30 @@ | ||
import React from "react"; | ||
import { ambassador } from "../../assets"; | ||
|
||
const Ambassador = () => { | ||
return ( | ||
<div className="flex h-[50vh] ml-20 mr-20 p-5 rounded-lg"> | ||
<div className="w-1/2 h-full p-5"> | ||
<div className="flex text-3xl"> | ||
<span className="text-pink-600 font-bold"> | </span> | ||
<h1 className="mr-3 ml-3 font-semibold">Ambassador</h1> | ||
<span className="">Program</span> | ||
</div> | ||
<div className="description mt-5"> | ||
<p className="leading-relaxed"> | ||
Support the Fashion Froze core team through community and <br /> | ||
marketing initiatives while accumulating rewards | ||
</p> | ||
</div> | ||
<button className="border p-3 bg-pink-500 rounded-full w-[25%] mt-10 font-normal hover:bg-violet-800"> | ||
Learn more {" "} | ||
</button> | ||
</div> | ||
<div className="w-1/2 h-full ml-20 "> | ||
<img src={ambassador} alt="" className="w-[80%] h-[100%]" /> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Ambassador; |
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,7 @@ | ||
import React from "react"; | ||
|
||
const CommmunityNews = () => { | ||
return <div>index</div>; | ||
}; | ||
|
||
export default CommmunityNews; |
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,7 @@ | ||
import React from "react"; | ||
|
||
const CommunityVideos = () => { | ||
return <div>index</div>; | ||
}; | ||
|
||
export default CommunityVideos; |
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