-
Notifications
You must be signed in to change notification settings - Fork 0
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
payamx
committed
Nov 6, 2023
1 parent
6c594f8
commit b61dc32
Showing
35 changed files
with
1,590 additions
and
26 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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.
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
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,11 @@ | ||
import React from 'react'; | ||
|
||
const Featured = () => { | ||
return ( | ||
<div> | ||
|
||
</div> | ||
); | ||
}; | ||
|
||
export default Featured; |
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,28 @@ | ||
import React from 'react'; | ||
import {Link} from "react-router-dom"; | ||
|
||
const NavbarCategory = () => { | ||
return ( | ||
|
||
<div className="flex justify-start items-center m-3 text-zinc-500 md:text-xl divide-x-2 divide-black overflow-x-auto "> | ||
<div className="flex justify-start items-center space-x-2 "> | ||
<Link to={'/'} className="p-2" >Editoral</Link> | ||
<Link to={'/'} className="p-2">Following</Link> | ||
</div> | ||
<div className="flex justify-start items-center ms-2 flex-nowrap "> | ||
<Link to={'/'} className="p-2" >Editoral</Link> | ||
<Link to={'/'} className="p-2" >Editoral</Link> | ||
<Link to={'/'} className="p-2" >Editoral</Link> | ||
<Link to={'/'} className="p-2" >Editoral</Link> | ||
<Link to={'/'} className="p-2" >Editoral</Link> | ||
<Link to={'/'} className="p-2" >Editoral</Link> | ||
<Link to={'/'} className="p-2" >Editoral</Link> | ||
|
||
|
||
|
||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default NavbarCategory; |
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,72 @@ | ||
import React, { useState } from 'react'; | ||
import { Button, Popover } from 'antd'; | ||
const App = () => { | ||
const [open, setOpen] = useState(false); | ||
const hide = () => { | ||
setOpen(false); | ||
}; | ||
const handleOpenChange = (newOpen) => { | ||
setOpen(newOpen); | ||
}; | ||
const content= | ||
<div className="flex justify-center items-start m-3 text-xl gap-4 "> | ||
|
||
<div className="px-2 m-1 flex-col space-y-3 space-x-2"> | ||
<div className="font-bold text-xl"> | ||
<img src="/company.svg" className="inline pr-2"/> | ||
Company</div> | ||
<div>About</div> | ||
<div>History</div> | ||
<div>join the team</div> | ||
<div> press</div> | ||
<div> contact</div> | ||
<div> help center</div> | ||
<div> socials</div> | ||
|
||
</div> | ||
|
||
<div className="px-2 m-1 flex-col space-y-3 space-x-2"> | ||
|
||
<div className="font-bold text-xl"> | ||
<img src="/product-carousel-svgrepo-com.svg" className="inline pr-2"/> | ||
|
||
Product</div> | ||
<div>Developers/Api</div> | ||
<div>Gallery Dataset</div> | ||
<div>Gallery for ios</div> | ||
<div> Apps & Plugin</div> | ||
|
||
|
||
</div> | ||
<div className="px-2 m-1 flex-col space-y-3 space-x-2"> | ||
|
||
<div className="font-bold text-xl"> | ||
<img src="/community.svg" className="inline pr-2"/> | ||
|
||
Community</div> | ||
<div>Become Contributor</div> | ||
<div>Topics</div> | ||
<div>Collections</div> | ||
<div> Trends</div> | ||
<div> Gallery Awards</div> | ||
<div> status</div> | ||
|
||
</div> | ||
|
||
</div> | ||
return ( | ||
|
||
|
||
<Popover | ||
color={""} | ||
placement="bottomRight" | ||
content={content} | ||
trigger="click" | ||
open={open} | ||
onOpenChange={handleOpenChange} | ||
> | ||
<img src="/menu.svg" className="px-2"/> | ||
</Popover> | ||
); | ||
}; | ||
export default App; |
Oops, something went wrong.