ayush-cli
Version:
A stylish CLI to showcase Ayush Sharma's portfolio, projects, skills, and achievements.
63 lines (51 loc) ⢠2.05 kB
JavaScript
import chalk from "chalk";
import gradient from "gradient-string";
import figlet from "figlet";
console.clear();
figlet("Ayush Sharma", (err, data) => {
if (err) {
console.log("Something went wrong...");
console.dir(err);
return;
}
console.log(gradient.pastel.multiline(data)); // Soft pastel gradient banner
console.log(`
${chalk.bold.blue("š Phone")}: +91-9548398538
${chalk.bold.blue("āļø Email")}: connect@ayush-sharma.in
${chalk.bold.blue("š Portfolio")}: https://ayush-sharma.in
${chalk.bold.blue("š GitHub")}: https://github.com/cyberboyayush
${chalk.bold.blue("š§ LeetCode")}: https://leetcode.com/cyberboyayush
${chalk.bold.blue("š Location")}: Jaipur, India
`);
console.log(chalk.magenta.bold("\nš EDUCATION"));
console.log(`
- Manipal University Jaipur
B.Tech in Computer Science (IoT & IS) (2023ā2027)
`);
console.log(chalk.cyan.bold("\nš» PROJECTS"));
console.log(`
${chalk.bold("Effisense")}
š Live: ${chalk.underline.blue('https://effisense.ayush-sharma.in')}
š ļø GitHub: ${chalk.underline.blue('https://github.com/cyberboyayush/effisense')}
${chalk.bold("PathGenie")}
š Live: ${chalk.underline.blue('https://pathgenie.ayush-sharma.in')}
š ļø GitHub: ${chalk.underline.blue('https://github.com/glucon-d/pathgenie')}
${chalk.bold("PortDev")}
š Live: ${chalk.underline.blue('https://portdev.ayush-sharma.in')}
š ļø GitHub: ${chalk.underline.blue('https://github.com/cyberboyayush/portdev')}
${chalk.bold("FinWise")}
š Live: ${chalk.underline.blue('https://finwise.ayush-sharma.in')}
š ļø GitHub: ${chalk.underline.blue('https://github.com/glucon-d/finwise')}
`);
console.log(chalk.yellow.bold("\nš ACHIEVEMENTS"));
console.log(`
- š„ Winner, HackerzStreet Hackathon 2025 (Team Leader)
- š§ Solved 500+ DSA Problems on LeetCode
`);
console.log(chalk.green.bold("\nš SKILLS"));
console.log(`
- MERN Stack, Next.js, Appwrite, Firebase, Tailwind CSS
- C++, Java, DSA, Problem Solving
`);
});