{"id":25215235,"url":"https://github.com/bharath-s-j/portfolio","last_synced_at":"2026-05-06T06:32:05.226Z","repository":{"id":276611461,"uuid":"929486570","full_name":"Bharath-S-J/Portfolio","owner":"Bharath-S-J","description":"Personal Portfolio – A modern, fully responsive portfolio built with React, TypeScript, and Tailwind CSS, showcasing my projects, skills, and experiences. Includes a dark mode toggle and a contact form with email support.","archived":false,"fork":false,"pushed_at":"2025-03-29T11:30:43.000Z","size":97,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-29T12:26:27.160Z","etag":null,"topics":["personal-website","portfolio","react","tailwindcss","typescript","vercel","vite-react-typescript","web-development"],"latest_commit_sha":null,"homepage":"https://bharathsjweb.vercel.app/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Bharath-S-J.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-08T16:58:32.000Z","updated_at":"2025-03-29T11:30:47.000Z","dependencies_parsed_at":"2025-03-29T12:33:07.545Z","dependency_job_id":null,"html_url":"https://github.com/Bharath-S-J/Portfolio","commit_stats":null,"previous_names":["bharath-s-j/portfolio"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bharath-S-J%2FPortfolio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bharath-S-J%2FPortfolio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bharath-S-J%2FPortfolio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bharath-S-J%2FPortfolio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Bharath-S-J","download_url":"https://codeload.github.com/Bharath-S-J/Portfolio/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247312093,"owners_count":20918341,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["personal-website","portfolio","react","tailwindcss","typescript","vercel","vite-react-typescript","web-development"],"created_at":"2025-02-10T18:13:56.215Z","updated_at":"2025-10-03T16:32:01.277Z","avatar_url":"https://github.com/Bharath-S-J.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🌐 My Personal Portfolio\n\nWelcome to my personal portfolio! 🚀 This is a fully responsive, dark-mode-supported website that showcases my projects, skills, and experiences. It also includes a contact form for visitors to reach out.\n\n## 📑 Table of Contents\n- [✨ Features](#-features)\n- [🛠 Technologies Used](#-technologies-used)\n- [📥 Installation](#-installation)\n- [🚀 Usage](#-usage)\n- [📂 Project Structure](#-project-structure)\n- [📬 Contact](#-contact)\n\n---\n\n## ✨ Features\n✅ **Responsive Design** – Fully adaptable to all screen sizes 📱💻🖥️\n✅ **Dark Mode** – Toggle between light and dark themes 🌞🌙\n✅ **Projects Showcase** – Displays projects with descriptions, technologies, and links 🔗💡\n✅ **Contact Form** – Visitors can send messages directly via email 📧\n\n---\n\n## 🛠 Technologies Used\n- **Frontend:** React ⚛️, TypeScript ⌨️, Tailwind CSS 🎨\n- **Build Tool:** Vite ⚡\n- **Email Service:** Nodemailer 📩\n- **Deployment:** Vercel ☁️\n\n---\n\n## 📥 Installation\n1. Clone the repository:\n   ```sh\n   git clone https://github.com/Bharath-S-J/Portfolio.git\n   cd portfolio\n   ```\n2. Install dependencies:\n   ```sh\n   npm install\n   ```\n3. Create a `.env` file in the root directory and add your Gmail credentials:\n   ```sh\n   GMAIL_USER_F=your-email@gmail.com //from email address\n   GMAIL_APP_PASSWORD=your-app-password\n   GMAIL_USER_T=your-email@gmail.com //to email address\n   ```\n\n---\n\n## 🚀 Usage\n1. Start the development server:\n   ```sh\n   npm run dev\n   ```\n2. Open your browser and navigate to: [http://localhost:3000](http://localhost:3000)\n\n3. To build the project for production:\n   ```sh\n   npm run build\n   ```\n4. To preview the production build:\n   ```sh\n   npm run preview\n   ```\n5. For contact form api (create a project in vercel):\n   ```sh\n   vercel dev\n   ```\n\n---\n\n## 📂 Project Structure\n```\n.vite/\napi/\n  ├── contact.mjs  # Handles contact form submission using Nodemailer\nsrc/\n  ├── components/\n  │   ├── ContactForm.tsx  # Contact form component\n  │   ├── Navbar.tsx  # Navigation bar\n  │   ├── ProjectCard.tsx  # Project card component\n  │   ├── ProjectModal.tsx  # Project details modal\n  │   ├── ThemeToggle.tsx  # Dark mode toggle\n  ├── App.tsx  # Main application file\n  ├── main.tsx  # React entry point\n  ├── index.css  # Global styles\n  ├── vite-env.d.ts  # TypeScript environment definitions\npublic/\n  ├── vite.svg  # Vite logo\nindex.html  # Main HTML file\npackage.json  # Project metadata \u0026 dependencies\ntsconfig.json  # TypeScript configuration\nvite.config.ts  # Vite configuration\npostcss.config.js  # PostCSS configuration\n```\n\n---\n\n🚀 **Thank you for visiting my portfolio! Feel free to explore and connect.**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbharath-s-j%2Fportfolio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbharath-s-j%2Fportfolio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbharath-s-j%2Fportfolio/lists"}