Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
7
This file provides guidance to Claude Code when working with this repository.
Sign in to like and favorite skills
This file provides guidance to Claude Code when working with this repository.
Personal portfolio hub at arda.tr - a landing page featuring links to various sites (AI chatbot, blog, band, resume) and showcasing games and developer tools.
. ├── src/ │ ├── App.tsx # Main app with providers │ ├── main.tsx # Entry point │ ├── index.css # Global styles and theme CSS variables (HSL) │ ├── components/ │ │ ├── Hero.tsx # Hero section with CTAs │ │ ├── About.tsx # About section with highlights │ │ ├── Portfolio.tsx # Games and tools showcase │ │ ├── Footer.tsx # Social links footer │ │ ├── ThemeToggle.tsx # Theme switcher (7 Dracula Pro themes) │ │ └── ui/ # shadcn/ui components │ ├── pages/ │ │ ├── Index.tsx # Main landing page │ │ └── NotFound.tsx # 404 page │ ├── hooks/ # Custom React hooks │ └── lib/ # Utility functions ├── public/ # Static assets (game images, favicon) ├── scripts/ # Build scripts (sitemap generator) ├── tailwind.config.ts # Tailwind configuration ├── dracula-pro*.json # Theme color definitions └── index.html # HTML template with SEO meta tags
# Development server npm run dev # Production build (includes sitemap generation) npm run build # Preview production build npm run preview # Lint npm run lint
src/index.css using HSL formattailwind.config.tsnext-themes package for theme switchingdarkMode: ["class"] configured in Tailwind