{"id":21140318,"url":"https://github.com/ldelvillar/snap-notes","last_synced_at":"2025-07-29T03:09:10.953Z","repository":{"id":263338920,"uuid":"889977194","full_name":"ldelvillar/snap-notes","owner":"ldelvillar","description":"Simple notes app made with NextJS and landing page built with Astro","archived":false,"fork":false,"pushed_at":"2024-11-18T10:18:32.000Z","size":229,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-07T00:44:09.955Z","etag":null,"topics":["astro","firebase","firebase-auth","firestore","landing","landing-page","nextjs","nextjs15","nextjs15-typescript","notes-app","notesapp","react","reactjs","typescript"],"latest_commit_sha":null,"homepage":"https://snap-notes.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/ldelvillar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null}},"created_at":"2024-11-17T17:59:50.000Z","updated_at":"2025-01-27T12:54:06.000Z","dependencies_parsed_at":"2025-05-07T00:43:05.305Z","dependency_job_id":"3a32478e-3dea-41cb-be23-7b88ea72bccb","html_url":"https://github.com/ldelvillar/snap-notes","commit_stats":null,"previous_names":["ldelvillar/snap-notes"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ldelvillar/snap-notes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ldelvillar%2Fsnap-notes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ldelvillar%2Fsnap-notes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ldelvillar%2Fsnap-notes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ldelvillar%2Fsnap-notes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ldelvillar","download_url":"https://codeload.github.com/ldelvillar/snap-notes/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ldelvillar%2Fsnap-notes/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267621606,"owners_count":24116902,"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","status":"online","status_checked_at":"2025-07-29T02:00:12.549Z","response_time":2574,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["astro","firebase","firebase-auth","firestore","landing","landing-page","nextjs","nextjs15","nextjs15-typescript","notes-app","notesapp","react","reactjs","typescript"],"created_at":"2024-11-20T07:14:29.245Z","updated_at":"2025-07-29T03:09:10.932Z","avatar_url":"https://github.com/ldelvillar.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SnapNotes 📝\n\nSnapNotes is a modern, lightweight note-taking application built with Next.js and Firebase, featuring a clean landing page built with Astro. It combines simplicity with functionality.\n\n🌐 **[Visit SnapNotes](https://snap-notes.vercel.app)**\n\n## 🌟 Features\n\n### Notes Application\n- **Quick Note Creation**: Create and edit notes instantly\n- **Real-time Updates**: Changes are saved automatically to Firebase\n- **Secure Authentication**: User authentication powered by Firebase\n- **Responsive Design**: Works across all devices\n- **Minimalist Interface**: Clean, distraction-free writing environment\n\n### Landing Site\n- **About Page**: Learn about SnapNotes' mission and features\n- **FAQ Section**: Common questions answered\n- **Contact Form**: Easy way to reach the team\n- **Modern Design**: Built with Astro for optimal performance\n\n## 🛠️ Technology Stack\n\n- **Frontend (App)**\n  - Next.js 15 (App Router)\n  - React\n  - Tailwind CSS\n  - Firebase Client SDK\n\n- **Landing Site**\n  - Astro\n  - Tailwind CSS\n\n- **Backend**\n  - Firebase\n    - Authentication\n    - Firestore Database\n\n## 🚀 Getting Started\n\n1. Clone the repository\n```bash\ngit clone https://github.com/ldelvillar/snap-notes.git\ncd snapnotes\n```\n\n2. Install dependencies\n```bash\n# Install app dependencies\ncd notes-app\nnpm install\n\n# Install landing site dependencies\ncd ../landing\nnpm install\n```\n\n3. Set up environment variables\n```bash\n# In notes-app/.env.local\nNEXT_PUBLIC_FIREBASE_API_KEY=your_api_key\nNEXT_PUBLIC_FIREBASE_AUTH_DOMAIN=your_auth_domain\nNEXT_PUBLIC_FIREBASE_PROJECT_ID=your_project_id\nNEXT_PUBLIC_FIREBASE_STORAGE_BUCKET=your_storage_bucket\nNEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID=your_messaging_sender_id\nNEXT_PUBLIC_FIREBASE_APP_ID=your_app_id\n```\n\n4. Run the development servers\n```bash\n# Run the app (from notes-app directory)\nnpm run dev\n\n# Run the landing site (from landing directory)\nnpm run dev\n```\n\n## 📁 Project Structure\n\n```\nsnap-notes/\n├── notes-app/                # Next.js application\n│   ├── public/             # Static assets\n│   │   ├── logo.svg      # SnapNotes logo\n│   │   └── images/       # Static images\n│   └── src/               # Source files\n│       ├── app/          # Next.js app router structure\n│       ├── components/   # React components\n│       │   └── icons/   # Icon components\n│       ├── config/      # Configuration files\n│       ├── context/     # React context providers\n│       ├── lib/         # Utility functions\n│       ├── styles/      # Global styles\n│       └── types/       # TypeScript types\n│\n└── landing/               # Astro landing site\n    ├── src/\n    │   ├── components/    # Astro components\n    │   │   └── icons/    # Icon components\n    │   ├── layouts/      # Page layouts\n    │   ├── pages/        # Site pages\n    │   └── sections/     # Site sections\n    └── public/           # Static assets\n        ├── logo.svg      # SnapNotes logo\n        └── images/       # Static images\n```\n\n## 📋 Features in Detail\n\n### Notes Application\n- Create, read, update, and delete notes\n- Real-time synchronization with Firebase\n- Markdown support for rich text formatting\n- User authentication and authorization\n- Responsive design for mobile and desktop\n\n### Landing Site\n- Fast, static site built with Astro\n- SEO-optimized content\n- Contact form integration\n- Responsive design\n- Clear documentation and FAQ\n\n## 🔐 Security\n\n- Secure user authentication via Firebase\n- Protected API routes\n- Data validation and sanitization\n- Secure data storage in Firestore\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 file for details.\n\n## 📞 Contact\n\nFor any questions or feedback, please reach out through:\n- Email: lucasvillarv@gmail.com\n- GitHub Issues\n\n---\n\nMade with ❤️ by Lucas del Villar","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fldelvillar%2Fsnap-notes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fldelvillar%2Fsnap-notes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fldelvillar%2Fsnap-notes/lists"}