|
1 | | -"use client" |
| 1 | +"use client"; |
| 2 | + |
| 3 | +import { AiOutlineThunderbolt } from "react-icons/ai"; |
| 4 | +import { CgMoreO } from "react-icons/cg"; |
| 5 | +import { FaRegBookmark } from "react-icons/fa"; |
| 6 | +import { FaRegUser } from "react-icons/fa6"; |
| 7 | +import { GoHome } from "react-icons/go"; |
| 8 | +import { IoMdSearch } from "react-icons/io"; |
| 9 | +import { MdOutlineMail } from "react-icons/md"; |
| 10 | +import { RiGroupLine, RiNotification2Line } from "react-icons/ri"; |
| 11 | +import { Button, UserAvatar, X_logo } from "../ui"; |
| 12 | +import GrokIcon from "../ui/Grok"; |
| 13 | +import X_Icon from "../ui/X_Icon"; |
2 | 14 | export const HomeLeft = () => { |
3 | | - return <div>Home Left</div>; |
| 15 | + return ( |
| 16 | + <div> |
| 17 | + <div className="h-screen pt-4"> |
| 18 | + <div className="flex flex-col items-end"> |
| 19 | + <div className="flex flex-col"> |
| 20 | + <div> |
| 21 | + <div className="mb-6 "> |
| 22 | + <X_logo /> |
| 23 | + </div> |
| 24 | + <div className="flex items-center gap-4 text-xl mb-6"> |
| 25 | + <GoHome /> |
| 26 | + Home |
| 27 | + </div> |
| 28 | + <div className="flex items-center gap-4 text-xl mb-6"> |
| 29 | + <IoMdSearch /> |
| 30 | + Explore |
| 31 | + </div> |
| 32 | + <div className="flex items-center gap-4 text-xl mb-6"> |
| 33 | + <RiNotification2Line /> |
| 34 | + Notifications |
| 35 | + </div> |
| 36 | + <div className="flex items-center gap-4 text-xl mb-6"> |
| 37 | + <MdOutlineMail /> |
| 38 | + Messages |
| 39 | + </div> |
| 40 | + <div className="flex items-center gap-4 text-xl mb-6"> |
| 41 | + <GrokIcon /> |
| 42 | + Grok |
| 43 | + </div> |
| 44 | + <div className="flex items-center gap-4 text-xl mb-6"> |
| 45 | + <X_Icon /> |
| 46 | + Premium |
| 47 | + </div> |
| 48 | + <div className="flex items-center gap-4 text-xl mb-6"> |
| 49 | + <FaRegBookmark /> |
| 50 | + Bookmarks |
| 51 | + </div> |
| 52 | + <div className="flex items-center gap-4 text-xl mb-6"> |
| 53 | + <RiGroupLine /> |
| 54 | + Communities |
| 55 | + </div> |
| 56 | + <div className="flex items-center gap-4 text-xl mb-6"> |
| 57 | + <AiOutlineThunderbolt /> |
| 58 | + Verified Orgs |
| 59 | + </div> |
| 60 | + <div className="flex items-center gap-4 text-xl mb-6"> |
| 61 | + <FaRegUser /> |
| 62 | + Profile |
| 63 | + </div> |
| 64 | + <div className="flex items-center gap-4 text-xl mb-6"> |
| 65 | + <CgMoreO /> |
| 66 | + More |
| 67 | + </div> |
| 68 | + <Button className="rounded-3xl w-full mt-6 px-10 ">Post</Button> |
| 69 | + </div> |
| 70 | + </div> |
| 71 | + </div> |
| 72 | + <div className="mt-auto"> |
| 73 | + <UserAvatar /> |
| 74 | + </div> |
| 75 | + </div> |
| 76 | + </div> |
| 77 | + ); |
4 | 78 | }; |
0 commit comments