|
| 1 | +import React from "react"; |
| 2 | +import Container from "@/components/Container"; |
| 3 | +import Link from "next/link"; |
| 4 | +import ProjectCard from "@/components/ProjectCard"; |
| 5 | +import Contact from "@/components/Contact"; |
| 6 | + |
| 7 | +export default function projects() { |
| 8 | + return ( |
| 9 | + <Container |
| 10 | + title="Projects – Manu Arora" |
| 11 | + description="Projects that I've built from scratch, upcoming projects, learned from courses and projects that I'm proud of." |
| 12 | + image="/avatar.jpg" |
| 13 | + > |
| 14 | + <div className="flex flex-col justify-center items-start max-w-2xl mx-auto mb-16"> |
| 15 | + <h1 className="font-bold text-3xl md:text-5xl tracking-tight mb-4 text-black dark:text-white"> |
| 16 | + Projects |
| 17 | + </h1> |
| 18 | + <h2 className="prose text-gray-600 dark:text-gray-400 mb-16"> |
| 19 | + I’ve developed commercial projects as well as hobby projects. All |
| 20 | + projects are included (along with course related projects) here. |
| 21 | + – |
| 22 | + <Link href="/blog"> |
| 23 | + <a className="text-blue-500 hover:underline"> |
| 24 | + checkout my blog |
| 25 | + </a> |
| 26 | + </Link> |
| 27 | + while you're here. <br />I write about technology, learning and memes. |
| 28 | + </h2> |
| 29 | + <h3 className="font-bold text-2xl md:text-4xl tracking-tight mb-4 text-black dark:text-white"> |
| 30 | + Full-Stack |
| 31 | + </h3> |
| 32 | + <ProjectCard |
| 33 | + title="PlaceholderTech" |
| 34 | + description="We build modern, blazing-fast web applications which helps your business grow and increase sales." |
| 35 | + href="https://placeholdertech.in/" |
| 36 | + icon="placeholdertech" |
| 37 | + tags={["Freelancing", "React", "Node", "Firebase"]} |
| 38 | + /> |
| 39 | + <ProjectCard |
| 40 | + title="Playground" |
| 41 | + description="An open-source playground to create HTML, CSS and Javascript components on the go." |
| 42 | + href="https://play.placeholdertech.in/" |
| 43 | + icon="play" |
| 44 | + tags={["NextJS", "Tailwind", "Chakra", "MongoDB"]} |
| 45 | + /> |
| 46 | + <ProjectCard |
| 47 | + title="Feedmeback" |
| 48 | + description="The easiest way to add comments or reviews to your static site. Built as part of React 2025." |
| 49 | + href="https://feedmeback-beta.vercel.app/" |
| 50 | + icon="fastfeedback" |
| 51 | + tags={["NextJS", "Jamstack", "Firebase", "OAuth"]} |
| 52 | + /> |
| 53 | + <ProjectCard |
| 54 | + title="Music Streaming Application" |
| 55 | + description="🎶 An Open-Source music streaming website (like spotify) with rich features like creating playlist, pause, play and user login/authentication." |
| 56 | + href="https://github.com/manuarora700/music-streaming-project" |
| 57 | + icon="music" |
| 58 | + tags={["PHP", "MySQL", "Spotify-UI", "Minimal"]} |
| 59 | + /> |
| 60 | + <ProjectCard |
| 61 | + title="GitHub Lookup" |
| 62 | + description="A minimal application to search for GitHub users with user details using the GitHub API" |
| 63 | + href="https://github-lookup-new.netlify.app/" |
| 64 | + icon="github" |
| 65 | + tags={["React", "Front-end", "Custom-CSS"]} |
| 66 | + /> |
| 67 | + |
| 68 | + <ProjectCard |
| 69 | + title="IPL Statistics" |
| 70 | + description="A bundled web application to get details and statistics of Every player, Team and detailed analysis of each match played in IPL" |
| 71 | + href="https://ipl-statistics.vercel.app/" |
| 72 | + icon="ipl" |
| 73 | + tags={["NextJS", "Vercel", "Dataset", "Real-world"]} |
| 74 | + /> |
| 75 | + |
| 76 | + <h3 className="font-bold text-2xl md:text-4xl tracking-tight mb-4 mt-8 text-black dark:text-white"> |
| 77 | + Upcoming Projects |
| 78 | + </h3> |
| 79 | + <ProjectCard |
| 80 | + title="Algochurn" |
| 81 | + description="Your last moment friend before a Technical Interview round. Practice the most popular Data Structures & Algorithms" |
| 82 | + href="#" |
| 83 | + icon="algochurn" |
| 84 | + tags={["NextJS", "Tailwind", "MongoDB", "NodeJS"]} |
| 85 | + /> |
| 86 | + <ProjectCard |
| 87 | + title="VSCode Resume" |
| 88 | + description="A VSCode themed resume for all the web developers out there. A UI which looks exactly like a React file-system based VSCode window with create and update operations." |
| 89 | + href="#" |
| 90 | + icon="vscode" |
| 91 | + tags={["NextJS", "Tailwind", "Hackerearth"]} |
| 92 | + /> |
| 93 | + <ProjectCard |
| 94 | + title="More projects coming soon.." |
| 95 | + description="I get ideas all day 🙄, All of them are updated here as soon as I start working on them." |
| 96 | + href="#" |
| 97 | + icon="more" |
| 98 | + /> |
| 99 | + |
| 100 | + {/* 🎶 A music streaming website (like spotify) built using PHP, HTML/CSS, AJAX, JS, jQuery, JSON, mySQL and more. */} |
| 101 | + <Contact /> |
| 102 | + </div> |
| 103 | + </Container> |
| 104 | + ); |
| 105 | +} |
0 commit comments