UNPKG

dragadix

Version:

A flirty, powerful CLI experience built by Aditya šŸ’‹

24 lines (20 loc) • 554 B
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", })); }