dragadix
Version:
A flirty, powerful CLI experience built by Aditya š
24 lines (20 loc) ⢠554 B
JavaScript
import chalk from "chalk";
import boxen from "boxen";
import { config } from "../config.js";
export async function showAbout() {
const name = config.name || "Unknown";
const tagline = config.tagline || "No tagline provided š";
const location = config.location || "š Somewhere Hot";
const content = `
š¤ ${chalk.bold(name)}
š Location: ${location}
š¬ ${tagline}
`;
console.log(boxen(content, {
padding: 1,
borderColor: "cyan",
borderStyle: "double",
title: "About Me š",
titleAlignment: "center",
}));
}