{"id":22381788,"url":"https://github.com/starknightt/prasendev","last_synced_at":"2025-04-06T16:10:20.999Z","repository":{"id":264904455,"uuid":"894592875","full_name":"StarKnightt/prasendev","owner":"StarKnightt","description":"A modern, responsive portfolio website built with Next.js 14, TypeScript, Tailwind CSS, Magic UI and Framer Motion.","archived":false,"fork":false,"pushed_at":"2025-04-02T15:10:32.000Z","size":39135,"stargazers_count":123,"open_issues_count":0,"forks_count":15,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-02T16:24:11.981Z","etag":null,"topics":["framer-motion","magicui","nextjs14","shadcdn","tailwind","tailwindcss"],"latest_commit_sha":null,"homepage":"https://prasendev.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/StarKnightt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-26T16:19:28.000Z","updated_at":"2025-04-02T15:10:37.000Z","dependencies_parsed_at":"2025-01-15T17:21:27.152Z","dependency_job_id":"ad8bdd31-4bee-4122-8687-c0620b6bea1d","html_url":"https://github.com/StarKnightt/prasendev","commit_stats":null,"previous_names":["starknightt/prasendev"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StarKnightt%2Fprasendev","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StarKnightt%2Fprasendev/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StarKnightt%2Fprasendev/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StarKnightt%2Fprasendev/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StarKnightt","download_url":"https://codeload.github.com/StarKnightt/prasendev/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247509221,"owners_count":20950232,"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":["framer-motion","magicui","nextjs14","shadcdn","tailwind","tailwindcss"],"created_at":"2024-12-05T00:10:21.976Z","updated_at":"2025-04-06T16:10:20.975Z","avatar_url":"https://github.com/StarKnightt.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Portfolio Website\n\nA modern, responsive portfolio website built with Next.js 14, TypeScript, Tailwind CSS, and Framer Motion.\n\n## 🌟 Features\n\n- **Responsive Design**: Looks great on all devices\n- **Dark/Light Mode**: Automatic theme switching based on system preferences\n- **Blog Support**: MDX-based blog with syntax highlighting\n- **Video Gallery**: YouTube video integration\n- **Gadgets Shop**: Curated list of recommended products\n- **Animations**: Smooth page transitions and micro-interactions\n- **GitHub Integration**: Live GitHub contribution graph\n- **SEO Optimized**: Meta tags and OpenGraph support\n- **Performance Focused**: Optimized for Core Web Vitals\n\n## 🚀 Tech Stack\n\n- **Framework**: [Next.js 14](https://nextjs.org/)\n- **Language**: [TypeScript](https://www.typescriptlang.org/)\n- **Styling**: [Tailwind CSS](https://tailwindcss.com/)\n- **UI Components**: [shadcn/ui](https://ui.shadcn.com/)\n- **Animations**: [Framer Motion](https://www.framer.com/motion/)\n- **Content**: [MDX](https://mdxjs.com/)\n- **Deployment**: [Vercel](https://vercel.com)\n\n## 📦 Installation\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/StarKnightt/prasendev\n```\n\n2. Install dependencies:\n```bash\nnpm install\n```\n\n3. Run the development server:\n```bash\nnpm run dev\n```\n\n4. Open [http://localhost:3000](http://localhost:3000) in your browser.\n\n## 🔧 Configuration\n\n1. Update `src/data/resume.tsx` with your personal information.\n2. Add your blog posts in the `content` directory as MDX files.\n3. Update `src/data/products.ts` to add your recommended products.\n4. Customize theme colors in `tailwind.config.ts`.\n\n## 📁 Project Structure\n\n```\n├── content/          # Blog posts (MDX)\n├── public/           # Static assets\n├── src/\n│   ├── app/         # Next.js app router pages\n│   ├── components/  # React components\n│   ├── data/        # Data files and types\n│   └── lib/         # Utility functions\n```\n\n## 🎨 Customization\n\n### Theme\n\nThe theme can be customized in `tailwind.config.ts`:\n\n```ts\ntheme: {\n  extend: {\n    colors: {\n      primary: {...},\n      secondary: {...},\n    }\n  }\n}\n```\n\n### Content\n\nUpdate the following files to customize content:\n\n- `src/data/resume.tsx`: Personal information and experience\n- `src/data/products.ts`: Recommended products\n- `content/*.mdx`: Blog posts\n\n## 📝 Adding Blog Posts\n\nCreate a new MDX file in the `content` directory:\n\n```mdx\n---\ntitle: \"Your Post Title\"\npublishedAt: \"2024-01-01\"\nsummary: \"Brief description of your post\"\n---\n\nYour content here...\n```\n\n## 🛠️ Development\n\n```bash\n# Start development server\nnpm run dev\n\n# Build for production\nnpm run build\n\n# Start production server\nnpm start\n\n# Lint code\nnpm run lint\n```\n\n## 📱 Progressive Web App\n\nThis website is PWA-ready with:\n- Service Worker support\n- Offline functionality\n- Install prompt\n- App manifest\n\n## 🤝 Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## 🙏 Acknowledgments\n\n- [shadcn/ui](https://ui.shadcn.com/) for the beautiful UI components\n- [Framer Motion](https://www.framer.com/motion/) for animations\n- [Tailwind CSS](https://tailwindcss.com/) for styling\n- [Next.js](https://nextjs.org/) for the framework\n\n## 📧 Contact\n\nYour Name - [@yourusername](https://twitter.com/Star_Knight12)\n\nProject Link: [Try it here](https://prasen.dev)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstarknightt%2Fprasendev","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstarknightt%2Fprasendev","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstarknightt%2Fprasendev/lists"}