├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── greetings.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DESIGN.md ├── Frontend ├── .gitignore ├── README.md ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── public │ ├── Arrow-know-more.png │ ├── BACKGROUND-DARK-MOBILE.svg │ ├── BACKGROUND-DARK.svg │ ├── BACKGROUND-MOBILE.svg │ ├── BACKGROUND.svg │ ├── DarkIcon.svg │ ├── DownloadButton-white.svg │ ├── DownloadButton.svg │ ├── FAVICON.png │ ├── Heart.svg │ ├── LightIcon.svg │ ├── Logo-white.svg │ ├── Logo.svg │ ├── LogoSmall.png │ ├── Our Mission.png │ ├── ProfileIcon.svg │ ├── Save.svg │ ├── SearchIcon.svg │ ├── Vector.svg │ ├── core-values.png │ ├── discord-icon.png │ ├── github-icon.png │ ├── inspiration.png │ ├── let’s work together.png │ ├── linkedin-icon.png │ ├── milestone.png │ └── mission.png ├── src │ ├── App.css │ ├── App.jsx │ ├── Components │ │ ├── AboutModule │ │ │ ├── Aboutus.jsx │ │ │ ├── Aboutus.module.css │ │ │ └── Footer.jsx │ │ ├── CommonModule │ │ │ └── NavBarModule │ │ │ │ ├── Logo.jsx │ │ │ │ ├── NavBar.jsx │ │ │ │ └── NavBar.module.css │ │ ├── ErrorModule │ │ │ ├── Error404.jsx │ │ │ ├── Error404.module.css │ │ │ └── Error404Assests │ │ │ │ ├── Arrow.svg │ │ │ │ ├── Circle.svg │ │ │ │ ├── Square.svg │ │ │ │ └── Triangle.svg │ │ ├── GalleryModule │ │ │ ├── DesktopSection │ │ │ │ ├── Desktop.jsx │ │ │ │ ├── Desktop.module.css │ │ │ │ ├── DesktopAssets │ │ │ │ │ ├── img_1.png │ │ │ │ │ ├── img_2.png │ │ │ │ │ ├── img_3.png │ │ │ │ │ └── img_4.png │ │ │ │ └── ImgCardsDesktop │ │ │ │ │ ├── ImgCard.jsx │ │ │ │ │ └── ImgCard.module.css │ │ │ ├── Gallery.jsx │ │ │ ├── Gallery.module.css │ │ │ ├── MobileSection │ │ │ │ ├── ImgCardsMobile │ │ │ │ │ ├── ImgCard.jsx │ │ │ │ │ └── ImgCard.module.css │ │ │ │ ├── Mobile.jsx │ │ │ │ ├── Mobile.module.css │ │ │ │ └── MobileAssets │ │ │ │ │ ├── mobile_wallpaper1.png │ │ │ │ │ ├── mobile_wallpaper10.png │ │ │ │ │ ├── mobile_wallpaper2.png │ │ │ │ │ ├── mobile_wallpaper3.png │ │ │ │ │ ├── mobile_wallpaper4.png │ │ │ │ │ ├── mobile_wallpaper5.png │ │ │ │ │ ├── mobile_wallpaper6.png │ │ │ │ │ ├── mobile_wallpaper7.png │ │ │ │ │ ├── mobile_wallpaper8.png │ │ │ │ │ └── mobile_wallpaper9.png │ │ │ ├── SideBarModule │ │ │ │ ├── SideBar.jsx │ │ │ │ ├── SideBar.module.css │ │ │ │ └── img │ │ │ │ │ ├── Desktop.svg │ │ │ │ │ ├── Mobile.svg │ │ │ │ │ └── Tablet.svg │ │ │ └── TabletSection │ │ │ │ ├── ImgCardsTablet │ │ │ │ ├── ImgCard.jsx │ │ │ │ └── ImgCard.module.css │ │ │ │ ├── Tablet.jsx │ │ │ │ ├── Tablet.module.css │ │ │ │ └── TabletAssets │ │ │ │ ├── tablet_wallpaper1.png │ │ │ │ ├── tablet_wallpaper2.png │ │ │ │ ├── tablet_wallpaper3.png │ │ │ │ ├── tablet_wallpaper4.png │ │ │ │ ├── tablet_wallpaper5.png │ │ │ │ └── tablet_wallpaper6.png │ │ ├── HomeModule │ │ │ ├── Home.jsx │ │ │ └── Home.module.css │ │ ├── ProfileModule │ │ │ ├── Profile.jsx │ │ │ └── Profile.module.css │ │ ├── ThemeModule │ │ │ ├── ThemeToggle.jsx │ │ │ └── ThemeToggle.module.css │ │ └── UploadModule │ │ │ ├── Upload.jsx │ │ │ └── Upload.module.css │ ├── index.css │ └── main.jsx └── vite.config.js ├── LICENSE ├── README.md ├── WEBSITE BANNER.png ├── Wallpapers ├── Desktop │ ├── Dinesh_RollsRoyce.png │ ├── Dinesh_Supercar.png │ ├── Sudipta_Sunset.jpg │ └── Sudipta_serenity.jpg ├── Mobile │ ├── Arushi_74.jpg │ ├── Arushi_Design.jpg │ ├── Dinesh_Supercar2.png │ ├── Dinesh_Supercars3.png │ └── Sudipta_butterfly.jpg ├── Tablet │ ├── Dinesh_RollsRoyce2.png │ ├── Dinesh_Supercar4.png │ ├── Sudipta_cityView.jpg │ └── Sudipta_geese.jpg └── WALLPAPER.md ├── package-lock.json └── package.json /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- 1 | name: "🐞 Bug Report" 2 | description: "Help us identify and fix bugs in the project by providing detailed reports." 3 | title: "Bug Report: " 4 | labels: ["bug", "help wanted"] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | Thank you for helping us improve! Please provide detailed information about the bug you encountered. This ensures we can address it efficiently. 10 | - type: textarea 11 | id: description 12 | validations: 13 | required: true 14 | attributes: 15 | label: "🔖 Bug Description" 16 | description: "Provide a clear and concise description of the bug, including what you expected to happen and what actually happened." 17 | placeholder: "Describe the bug here..." 18 | - type: textarea 19 | id: evidence 20 | attributes: 21 | label: "📷 Screenshot or Video (Optional)" 22 | description: "If possible, attach screenshots or videos to demonstrate the bug." 23 | placeholder: "Link or attach visual evidence." 24 | validations: 25 | required: false 26 | - type: checkboxes 27 | id: checklist 28 | attributes: 29 | label: "✔️ Checklist" 30 | options: 31 | - label: "I have searched existing issues to ensure this is not a duplicate." 32 | required: true 33 | - label: "I have read and followed the [Contributing Guidelines](https://github.com/Parnab03/WallGodds/blob/main/CONTRIBUTING.md)." 34 | required: true 35 | - label: "I have read and agree to the [Code of Conduct](https://github.com/Parnab03/WallGodds/blob/main/CODE_OF_CONDUCT.md)." 36 | required: true 37 | - label: "I am willing to work on this issue." 38 | required: false 39 | - type: textarea 40 | id: additional-notes 41 | attributes: 42 | label: "📝 Additional Notes (Optional)" 43 | description: "Provide any extra context or relevant information about the bug." 44 | placeholder: "Add additional details here..." 45 | validations: 46 | required: false 47 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | contact_links: 3 | - name: Discord Community 4 | url: https://discord.gg/kTQ5KWANp8 5 | about: Join our Discord Community for Disucussion 6 | - name: LinkedIn Page 7 | url: https://www.linkedin.com/company/wallgodds/posts/?feedView=all 8 | about: Follow us on our LinkedIn Page 9 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | # Description 2 | 4 | 5 | --- 6 | 7 | ## Type of Change 8 | 9 | - [ ] 🆕 New Feature 10 | - [ ] 🐛 Bug Fix 11 | - [ ] 🖼 Wallpaper Added 12 | - [ ] 🎨 UI/Design Update 13 | - [ ] 🔄 Refactor/Code Improvement 14 | - [ ] 📂 Other (Specify here): 15 | 16 | **Issue Linked:** 17 | 18 | 19 | --- 20 | 21 | # Checklist 22 | - [X] 📖 I have read and followed the [Contributing Guidelines](CONTRIBUTING.md). 23 | - [X] ✅ My code adheres to the project's style guidelines. 24 | - [X] 🧪 I have tested my changes locally and ensured no existing functionality is broken. 25 | - [X] ✍️ I have added or updated necessary documentation where applicable (e.g., README.md, DESIGN.md, WALLPAPER.md). 26 | 27 | --- 28 | 29 | # Additional Notes 30 | 31 | -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- 1 | name: Greetings 2 | 3 | on: [pull_request_target, issues] 4 | 5 | jobs: 6 | greeting: 7 | runs-on: ubuntu-latest 8 | permissions: 9 | issues: write 10 | pull-requests: write 11 | steps: 12 | - uses: actions/first-interaction@v1 13 | with: 14 | repo-token: ${{ secrets.GITHUB_TOKEN }} 15 | issue-message: "👋 Thanks @${{ github.actor }} for opening an issue! Our team will review it soon. Stay tuned!" 16 | pr-message: "🎉 Thanks @${{ github.actor }} for your PR! A maintainer will review it shortly. We appreciate your contribution!" 17 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | pb7439578071@gmail.com. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # 🖼️ Contributing to WallGodds 2 | 3 | Welcome to **WallGodds**, a community-driven platform for high-quality, categorized wallpapers! 🌟 We’re thrilled to have you here and can’t wait to see how you’ll help us enhance this project. Whether you're a developer, designer, or enthusiast, your contributions will help make WallGodds the go-to hub for stunning wallpapers. 🚀 4 | 5 | --- 6 | 7 | ## 🚀 How to Contribute? 8 | 9 | ### 1. **Star and Fork the Repository** 10 | - Hit the ⭐ **Star** button to show your support for WallGodds. 11 | - **Fork** this repository to your GitHub account to work on your personalized copy of the project. 12 | 13 | --- 14 | 15 | ### 2. **Clone the Repository** 16 | After forking, clone the repository to your local machine: 17 | ```bash 18 | git clone https://github.com//WallGodds.git 19 | ``` 20 | Replace `` with your GitHub username. 21 | 22 | --- 23 | 24 | ### 3. **Create a New Branch** 25 | Create a new branch for your changes to keep your work organized: 26 | ```bash 27 | git checkout -b 28 | ``` 29 | Use a descriptive branch name, such as the feature you’re working on (e.g., `add-upload-feature`, `fix-footer-styling`). 30 | 31 | --- 32 | 33 | ### 4. **Make Your Changes** 34 | - Add new features or improve existing ones (e.g., profile pages, wallpaper categories, upload functionality). 35 | - Ensure your code follows the project’s conventions and standards for structure and styling. 36 | 37 | --- 38 | 39 | ### 5. **Commit Your Changes** 40 | Save your progress with clear and descriptive commit messages: 41 | ```bash 42 | git commit -m "Added functionality to upload wallpapers with preview" 43 | ``` 44 | 45 | --- 46 | 47 | ### 6. **Push Your Changes** 48 | Push your branch to your forked repository: 49 | ```bash 50 | git push origin 51 | ``` 52 | 53 | --- 54 | 55 | ### 7. **Submit a Pull Request (PR)** 56 | Submit your work for review: 57 | - Go to the original repository on GitHub. 58 | - Click the **Pull Requests** tab and select **New Pull Request**. 59 | - Choose your branch and describe your changes: 60 | - Reference any issues your PR addresses (e.g., `Fixes #42`) [if exists]. 61 | - Explain the purpose of your changes and how they improve WallGodds. 62 | 63 | --- 64 | 65 | ## 🌟 Additional Contribution Guidelines 66 | 67 | - **Follow the Code Style**: Consistency matters! Stick to the existing coding conventions. 68 | - **Add Documentation**: If you're introducing a new feature, update relevant docs or the README. 69 | - **Test Your Changes**: Ensure everything works as intended by testing your additions locally. 70 | - **Link Issues**: Use `Fixes #` in your PR description to automatically close issues upon merge. 71 | 72 | --- 73 | 74 | ## 📂 Figma File for Designers 75 | We’ve uploaded the design prototype for WallGodds on Figma to help developers align with the design team. Access the Figma file here: [WallGodds Design on Figma](DESIGN.md). 76 | 77 | --- 78 | 79 | 80 | ## 💡 Need Help? 81 | If you encounter challenges, here’s how you can reach out: 82 | - Open an issue with your query, and we’ll respond as soon as possible. 83 | - Join our community discussions for collaborative problem-solving [coming soon]. 84 | - Tag project maintainers in your pull request for personalized support. 85 | 86 | --- 87 | 88 | Thank you for helping us make **WallGodds** an amazing platform for wallpaper enthusiasts! Together, we can create a stunning, user-friendly experience for everyone. 🌍 89 | -------------------------------------------------------------------------------- /DESIGN.md: -------------------------------------------------------------------------------- 1 | # WallGodds Design Documentation 2 | 3 | ## 📝 Have Suggestions? 4 | 5 | We value your input! If you have ideas or feedback about the design, feel free to share them in the [Discussions](https://github.com/Parnab03/WallGodds/discussions). 6 | 7 | --- 8 | 9 | ## 🎨 Designer? Contribute to Our Design 10 | 11 | If you're a designer interested in contributing directly to our Figma design file, we’d love to have your expertise! Please fill out this [form](https://docs.google.com/forms/d/e/1FAIpQLScDW1v7DJCkx_gGDvuMFirS6WkeRgmGGQJ9T_8UYuBHszmqFg/viewform?usp=sharing) to request access. Once approved, you’ll be granted edit permissions to collaborate effectively. 12 | 13 | --- 14 | 15 | ## 📂 Design Resources 16 | Our design work is centralized in a **Figma file**, which is constantly updated as the project progresses. This file includes wireframes, prototypes, and finalized design assets. 17 | 18 | 👉 [WallGodds Figma Design](https://www.figma.com/design/rsOU06uLMMhLJOgw7SUhWt/Wallgodds?node-id=0-1&t=qHqKU2yChHBLEmXg-1) 19 | 20 | --- 21 | 22 | ## 🛠️ Design Components 23 | 24 | ### **Color Palette** 25 | The primary color palette for the website: 26 | | **Color** | **Hex Code** | **Usage** | 27 | |--------------------|--------------|-----------------------| 28 | | Primary (White) | #FFFFFF | Background | 29 | | Secondary (Black) | #000000 | Text | 30 | | SidebarGradient (1st Color) | #FDD7DE | Background | 31 | | SidebarGradient (2nd Color) | #E6E1FD | Secondary backgrounds | 32 | | Main Primary BG (GRADIENT 1st color) | #7056F5 | Background | 33 | | Main Primary 1BG (GRADIENT 2nd color) | #ABB3FE | Background | 34 | | Main Primary 2BG (GRADIENT 1st color) | #F2AB93 | Background | 35 | | Main Primary 2BG (GRADIENT 2nd color) | #F76582 | Background | 36 | | Nav Bar GRADIENT (1st color) | #008FFF | Nav Bar border | 37 | | Nav Bar GRADIENT (2nd color) | #FF9D00 | Nav Bar border | 38 | | Nav Bar GRADIENT (3rd color) | #D90000 | Nav Bar border | 39 | | Nav Bar GRADIENT (4th color) | #970088 | Nav Bar border | 40 | | Button (Solid) | #FF0000 | Like Button | 41 | | Button (Solid) | #808080 | Download Button | 42 | 43 | 44 | 45 | 46 | 47 | 48 | ### **Typography** 49 | - Logo Gruppo Font Size - 41.14 50 | - Comfortaa Regular (Nav bar ---Font size 23.46) 51 | - Comfortaa Regular (Side bar ---Font size 23.46) 52 | - Comfortaa Regular (user name and download button) ---size 19.3 53 | 54 | --- 55 | 56 | ## 📐 Layouts and Breakpoints 57 | - Width - 1920 58 | - Height - ∞ 59 | 60 | ### **Grid System** 61 | WallGodds uses a ∞ column grid system for layouts to ensure responsiveness. 62 | 63 | ### **Breakpoints** 64 | The website is designed to support the following screen sizes: 65 | - Mobile: Coming Soon 66 | - Tablet: Coming Soon 67 | - Desktop: ≥ 1920px 68 | 69 | --- 70 | 71 | ## 📑 Pages and Key Elements 72 | 73 | ### **Page-wise Design Documentation** 74 | 75 | #### Gallery Page 76 | - **Nav Bar**: Home, 77 | Galary, 78 | Upload, 79 | About Us, 80 | Search Bar, 81 | Profile Icon 82 | - **Side Bar**: Highlight device types (Mobile, Tablet, Desktop). 83 | - **Scrollable Section**: Encourage users to explore wallpapers. 84 | 85 | **MORE PAGES COMING SOON** 86 | 87 | 95 | 96 | --- 97 | 98 | ## 💡 Suggestions 99 | If you think any design components can be improved or have suggestions, please: 100 | 1. Open a GitHub discussion or issue. 101 | 2. Provide references or examples for clarity. 102 | -------------------------------------------------------------------------------- /Frontend/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /Frontend/README.md: -------------------------------------------------------------------------------- 1 | # React + Vite 2 | 3 | This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. 4 | 5 | Currently, two official plugins are available: 6 | 7 | - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh 8 | - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh 9 | -------------------------------------------------------------------------------- /Frontend/eslint.config.js: -------------------------------------------------------------------------------- 1 | import js from '@eslint/js' 2 | import globals from 'globals' 3 | import react from 'eslint-plugin-react' 4 | import reactHooks from 'eslint-plugin-react-hooks' 5 | import reactRefresh from 'eslint-plugin-react-refresh' 6 | 7 | export default [ 8 | { ignores: ['dist'] }, 9 | { 10 | files: ['**/*.{js,jsx}'], 11 | languageOptions: { 12 | ecmaVersion: 2020, 13 | globals: globals.browser, 14 | parserOptions: { 15 | ecmaVersion: 'latest', 16 | ecmaFeatures: { jsx: true }, 17 | sourceType: 'module', 18 | }, 19 | }, 20 | settings: { react: { version: '18.3' } }, 21 | plugins: { 22 | react, 23 | 'react-hooks': reactHooks, 24 | 'react-refresh': reactRefresh, 25 | }, 26 | rules: { 27 | ...js.configs.recommended.rules, 28 | ...react.configs.recommended.rules, 29 | ...react.configs['jsx-runtime'].rules, 30 | ...reactHooks.configs.recommended.rules, 31 | 'react/jsx-no-target-blank': 'off', 32 | 'react-refresh/only-export-components': [ 33 | 'warn', 34 | { allowConstantExport: true }, 35 | ], 36 | }, 37 | }, 38 | ] 39 | -------------------------------------------------------------------------------- /Frontend/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 16 | 17 | WallGodds 18 | 19 | 20 |
21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /Frontend/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "wallgodds", 3 | "private": true, 4 | "version": "0.0.0", 5 | "type": "module", 6 | "scripts": { 7 | "dev": "vite", 8 | "build": "vite build", 9 | "lint": "eslint .", 10 | "preview": "vite preview" 11 | }, 12 | "dependencies": { 13 | "react": "^18.3.1", 14 | "react-dom": "^18.3.1", 15 | "react-icons": "^5.5.0", 16 | "react-router-dom": "^7.1.4", 17 | "wallgodds": "file:" 18 | }, 19 | "devDependencies": { 20 | "@eslint/js": "^9.15.0", 21 | "@types/react": "^18.3.12", 22 | "@types/react-dom": "^18.3.1", 23 | "@vitejs/plugin-react": "^4.3.4", 24 | "eslint": "^9.15.0", 25 | "eslint-plugin-react": "^7.37.2", 26 | "eslint-plugin-react-hooks": "^5.0.0", 27 | "eslint-plugin-react-refresh": "^0.4.14", 28 | "globals": "^15.12.0", 29 | "vite": "^6.0.1" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /Frontend/public/Arrow-know-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parnab03/WallGodds/1d6d9164e4b8e47e9a288bc3c2072394e0ce55fe/Frontend/public/Arrow-know-more.png -------------------------------------------------------------------------------- /Frontend/public/BACKGROUND-DARK.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /Frontend/public/BACKGROUND.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /Frontend/public/DarkIcon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/public/DownloadButton-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Frontend/public/DownloadButton.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Frontend/public/FAVICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parnab03/WallGodds/1d6d9164e4b8e47e9a288bc3c2072394e0ce55fe/Frontend/public/FAVICON.png -------------------------------------------------------------------------------- /Frontend/public/Heart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Frontend/public/LightIcon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Frontend/public/Logo-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Frontend/public/Logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Frontend/public/LogoSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parnab03/WallGodds/1d6d9164e4b8e47e9a288bc3c2072394e0ce55fe/Frontend/public/LogoSmall.png -------------------------------------------------------------------------------- /Frontend/public/Our Mission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parnab03/WallGodds/1d6d9164e4b8e47e9a288bc3c2072394e0ce55fe/Frontend/public/Our Mission.png -------------------------------------------------------------------------------- /Frontend/public/ProfileIcon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Frontend/public/Save.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Frontend/public/SearchIcon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Frontend/public/Vector.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Frontend/public/core-values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parnab03/WallGodds/1d6d9164e4b8e47e9a288bc3c2072394e0ce55fe/Frontend/public/core-values.png -------------------------------------------------------------------------------- /Frontend/public/discord-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parnab03/WallGodds/1d6d9164e4b8e47e9a288bc3c2072394e0ce55fe/Frontend/public/discord-icon.png -------------------------------------------------------------------------------- /Frontend/public/github-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parnab03/WallGodds/1d6d9164e4b8e47e9a288bc3c2072394e0ce55fe/Frontend/public/github-icon.png -------------------------------------------------------------------------------- /Frontend/public/inspiration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parnab03/WallGodds/1d6d9164e4b8e47e9a288bc3c2072394e0ce55fe/Frontend/public/inspiration.png -------------------------------------------------------------------------------- /Frontend/public/let’s work together.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parnab03/WallGodds/1d6d9164e4b8e47e9a288bc3c2072394e0ce55fe/Frontend/public/let’s work together.png -------------------------------------------------------------------------------- /Frontend/public/linkedin-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parnab03/WallGodds/1d6d9164e4b8e47e9a288bc3c2072394e0ce55fe/Frontend/public/linkedin-icon.png -------------------------------------------------------------------------------- /Frontend/public/milestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parnab03/WallGodds/1d6d9164e4b8e47e9a288bc3c2072394e0ce55fe/Frontend/public/milestone.png -------------------------------------------------------------------------------- /Frontend/public/mission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parnab03/WallGodds/1d6d9164e4b8e47e9a288bc3c2072394e0ce55fe/Frontend/public/mission.png -------------------------------------------------------------------------------- /Frontend/src/App.css: -------------------------------------------------------------------------------- 1 | /* #root { 2 | max-width: 1280px; 3 | margin: 0 auto; 4 | padding: 2rem; 5 | text-align: center; 6 | } 7 | 8 | .logo { 9 | height: 6em; 10 | padding: 1.5em; 11 | will-change: filter; 12 | transition: filter 300ms; 13 | } 14 | .logo:hover { 15 | filter: drop-shadow(0 0 2em #646cffaa); 16 | } 17 | .logo.react:hover { 18 | filter: drop-shadow(0 0 2em #61dafbaa); 19 | } 20 | 21 | @keyframes logo-spin { 22 | from { 23 | transform: rotate(0deg); 24 | } 25 | to { 26 | transform: rotate(360deg); 27 | } 28 | } 29 | 30 | @media (prefers-reduced-motion: no-preference) { 31 | a:nth-of-type(2) .logo { 32 | animation: logo-spin infinite 20s linear; 33 | } 34 | } 35 | 36 | .card { 37 | padding: 2em; 38 | } 39 | 40 | .read-the-docs { 41 | color: #888; 42 | } */ 43 | 44 | html, 45 | body, 46 | #root { 47 | margin: 0; 48 | padding: 0; 49 | height: 100%; 50 | } 51 | 52 | body { 53 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", 54 | "Helvetica Neue", sans-serif; 55 | background-color: #f8f9fa; 56 | color: #333; 57 | } 58 | 59 | ::-webkit-scrollbar { 60 | width: 8px; 61 | } -------------------------------------------------------------------------------- /Frontend/src/App.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { BrowserRouter as Router, Routes, Route, useLocation} from "react-router-dom"; 3 | import Gallery from "./Components/GalleryModule/Gallery"; 4 | import "./App.css"; 5 | import Home from "./Components/HomeModule/Home"; 6 | import Upload from "./Components/UploadModule/Upload"; 7 | import Aboutus from "./Components/AboutModule/Aboutus"; 8 | import Error404 from "./Components/ErrorModule/Error404"; 9 | import Profile from "./Components/ProfileModule/Profile"; 10 | import Footer from "./Components/AboutModule/Footer"; 11 | 12 | 13 | function App() { 14 | return ( 15 | 16 | 17 | 18 | } /> 19 | } /> 20 | } /> 21 | } /> 22 | } /> 23 | } /> 24 | 25 | 26 | 27 | 28 | 29 | ); 30 | } 31 | 32 | export default App; 33 | -------------------------------------------------------------------------------- /Frontend/src/Components/AboutModule/Aboutus.jsx: -------------------------------------------------------------------------------- 1 | // import React from "react"; 2 | // import NavBar from "../CommonModule/NavBarModule/NavBar"; 3 | // import styles from "./Aboutus.module.css"; 4 | 5 | 6 | // const Aboutus = () => { 7 | // return ( 8 | // <> 9 | // 10 | //
11 | //

Under Development

12 | //

13 | // Please check the related issues on GitHub: 14 | //

32 | //

33 | //
34 | // 35 | // ); 36 | // }; 37 | 38 | // export default Aboutus; 39 | 40 | 41 | import React from "react"; 42 | import NavBar from "../CommonModule/NavBarModule/NavBar"; 43 | import styles from './Aboutus.module.css'; 44 | import Footer from "./Footer"; 45 | 46 | 47 | const Aboutus = () => { 48 | return ( 49 | <> 50 | 51 |
52 |
53 |

54 | WallGodds: Minimal by Design, Inspired by You 55 |

56 |

57 | WallGodds is an open-source wallpaper project that fosters collaboration between developers and designers to create a dynamic platform for wallpapers. With a seamless blend of creativity and technology, WallGodds delivers an immersive experience for those who appreciate exceptional visual aesthetics. 58 |
59 | Developers can contribute by enhancing the platform’s functionality, optimizing performance, and introducing innovative features, while designers can showcase their creativity by submitting stunning wallpapers for a global audience. With a focus on minimalism and user experience, WallGodds provides an open and collaborative environment where art and technology converge. 60 |

61 | 62 |
63 | Our Mission 64 |
65 |

Our Mission

66 |

67 | At WallGodds, we strive to make digital art easily accessible to everyone. Our platform allows users to effortlessly discover wallpapers while giving designers a dedicated space to share their creativity. With a focus on simplicity, efficiency, and inclusivity, we create a seamless browsing experience across all devices. Through open-source collaboration, we foster a community that values innovation and user-centric design. 68 |

69 |
70 |
71 | 72 |
73 | Our Inspiration 74 |
75 |

Our Inspiration

76 |

77 | Inspired by simplicity, efficiency, and inclusivity, WallGodds is built with a clean and functional design. Our goal is to offer a smooth browsing experience while fostering a growing community of designers, developers, and enthusiasts who bring unique creativity to the platform. 78 |

79 |
80 |
81 | 82 |
83 | Core Values 84 |
85 |

Core Values

86 |

87 | WallGodds values creativity, user-centric design, and open collaboration. We prioritize high-quality wallpapers, seamless performance, and an engaging community-driven approach. Recognizing and supporting contributors is at the heart of our platform, ensuring their work is appreciated and celebrated. 88 |

89 |
90 |
91 | 92 |
93 | Milestone & Growth 94 |
95 |

Milestone & Growth

96 |

97 | WallGodds has achieved significant milestones, including acceptance into Winter of Code 4.0, JWOC, and Apertre 2.0. As our community expands, we remain committed to enhancing contributor recognition and optimizing the user experience. Through continuous improvements driven by user feedback, we prioritize design, performance, security, and scalability to ensure a robust and evolving platform. 98 |

99 |
100 |
101 | 102 |

Join Our Community

103 | 114 |
115 |
116 |