{"id":28189826,"url":"https://github.com/northstrix/entry-assignment-for-cyberia","last_synced_at":"2026-04-22T21:37:54.940Z","repository":{"id":293072345,"uuid":"982849472","full_name":"Northstrix/entry-assignment-for-cyberia","owner":"Northstrix","description":"As the name says","archived":false,"fork":false,"pushed_at":"2025-05-15T07:10:25.000Z","size":257,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-23T01:06:09.929Z","etag":null,"topics":["aceternity-ui","authenticated-encryption","chacha20","firebase","hmac-sha512","mlkem","mobile-friendly","namer-ui","nuxt3","post-quantum-cryptography","serpent","vue","vuejs"],"latest_commit_sha":null,"homepage":"https://entry-assignment-for-cyberia.netlify.app/","language":"Vue","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/Northstrix.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":"2025-05-13T13:51:48.000Z","updated_at":"2025-05-15T07:10:28.000Z","dependencies_parsed_at":"2025-05-13T15:26:37.311Z","dependency_job_id":"d5cc71c4-1518-4036-99c4-55f7c8b265c2","html_url":"https://github.com/Northstrix/entry-assignment-for-cyberia","commit_stats":null,"previous_names":["northstrix/entry-assignment-for-cyberia"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Northstrix/entry-assignment-for-cyberia","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Northstrix%2Fentry-assignment-for-cyberia","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Northstrix%2Fentry-assignment-for-cyberia/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Northstrix%2Fentry-assignment-for-cyberia/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Northstrix%2Fentry-assignment-for-cyberia/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Northstrix","download_url":"https://codeload.github.com/Northstrix/entry-assignment-for-cyberia/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Northstrix%2Fentry-assignment-for-cyberia/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261392180,"owners_count":23151718,"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":["aceternity-ui","authenticated-encryption","chacha20","firebase","hmac-sha512","mlkem","mobile-friendly","namer-ui","nuxt3","post-quantum-cryptography","serpent","vue","vuejs"],"created_at":"2025-05-16T10:11:21.410Z","updated_at":"2026-04-22T21:37:54.895Z","avatar_url":"https://github.com/Northstrix.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Entry Assignment For Cyberia\nAs the name says\n\n## Highlights\n - English, Hebrew, and Russian localizations\n\n - Responsive navbar optimized for desktop and mobile\n\n - Breadcrumbs with adjustable spacing between page name and separator (5px desktop, 4px mobile)\n\n - Background with subtle noise and slight center lightening\n\n - Right-to-left (RTL) layout support\n\n - Bento-style image grid using Aceternity’s Focus Card component\n\n - Dedicated image container for mobile view\n\n - Pinia store managing current language and active category; preserves filters and language selection across navigation and reloads; sets layout direction (LTR/RTL) based on language\n\n - SVG-based inputs and checkboxes for desktop\n\n - Floating label inputs re-render on window resize (desktop)\n\n - Typography adjustments with customized letter-spacing on inscriptions\n\n - Secure response collection using ML-KEM-1024, ChaCha20, Serpent-256 CBC, HMAC-SHA512, integrated with Firebase\n\n - Code formatting using ESLint\n\n## How to run\n\nI assume you already have Node.js and npm installed.\n\n\n1. Clone the repository using the command:\n\n    ```\n    git clone https://github.com/Northstrix/entry-assignment-for-cyberia\n    ```\n\n2. Open the project:\n\n    - Open the cloned folder in VS Code or any IDE of your choice.\n\n3. Configure Firebase:\n\n    - Open `plugins/firebase.client.ts`.\n    - Create a Firebase instance with Authentication and Firestore Database enabled.\n    - Create a new web app in the Firebase instance.\n    - Replace the mock credentials in `firebase.client.ts` with your actual Firebase credentials and save the file.\n\n4. Set Firestore rules:\n\n    - Apply the following rules to your Firestore database:\n\n      ```\n      rules_version = '2';\n      service cloud.firestore {\n        match /databases/{database}/documents {\n      \n          // Anyone can create, only owner can read or delete\n          match /data/{userEmail}/receivedResponses/{document=**} {\n            allow create: if true;\n            allow read, delete: if request.auth != null \u0026\u0026 request.auth.token.email == userEmail;\n          }\n      \n          // Public folder: anyone can read, only owner can write or delete\n          match /data/{userEmail}/public/{document=**} {\n            allow read: if true;\n            allow write, delete: if request.auth != null \u0026\u0026 request.auth.token.email == userEmail;\n          }\n      \n          // Private folder: only owner can read, write, or delete\n          match /data/{userEmail}/private/{document=**} {\n            allow read, write, delete: if request.auth != null \u0026\u0026 request.auth.token.email == userEmail;\n          }\n      \n          // Default deny\n          match /{document=**} {\n            allow read, write, delete: if false;\n          }\n        }\n      }\n      ```\n\n5. Install dependencies by running:\n\n    ```\n    npm install\n    ```\n\n6. Start the development server with:\n\n    ```\n    npm run dev -- --host 0.0.0.0\n    ```\n\n7. Access the dashboard:\n\n    - Open the `/owner-dashboard` route.\n\n8. Create owner account:\n\n    - Create an account with the `server-owner@whatever.xyz` email and a password of your choice.\n\n9. Done:\n\n    - The web app is now functional.\n    - Visitors can submit responses, and the owner can access them.\n\n## Credit\n\nThe existence of this project (at least in its current form) wouldn't've been possible without the following:\n\n[Bento Grid](https://ui.aceternity.com/components/bento-grid) by [Aceternity UI](https://ui.aceternity.com/)\n\n[Focus Cards](https://ui.aceternity.com/components/focus-cards) by [Aceternity UI](https://ui.aceternity.com/)\n\n[Text Hover Effect](https://ui.aceternity.com/components/text-hover-effect) by [Aceternity UI](https://ui.aceternity.com/)\n\n[Chronicle Button](https://codepen.io/Haaguitos/pen/OJrVZdJ) by [Haaguitos](https://codepen.io/Haaguitos)\n\n[Input Floating Label animation](https://codepen.io/Mahe76/pen/qBQgXyK) by [Elpeeda](https://codepen.io/Mahe76)\n\n[hash-wasm](https://github.com/Daninet/hash-wasm) by [Daninet](https://github.com/Daninet)\n\n[mipher](https://github.com/mpaland/mipher) by [mpaland](https://github.com/mpaland)\n\n[crystals-kyber-js](https://github.com/dajiaji/crystals-kyber-js) by [dajiaji](https://github.com/dajiaji)\n\n[firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) by [firebase](https://github.com/firebase/firebase-js-sdk)\n\n[Daily UI#011 | Flash Message (Error/Success)](https://codepen.io/juliepark/pen/vjMOKQ) by [Julie Park](https://codepen.io/juliepark)\n\n[すりガラスなプロフィールカード](https://codepen.io/ash_creator/pen/zYaPZLB) by [あしざわ - Webクリエイター](https://codepen.io/ash_creator)\n\n[チェックしないと押せないボタン](https://codepen.io/ash_creator/pen/JjZReNm) by [あしざわ - Webクリエイター](https://codepen.io/ash_creator)\n\n[Perplexity](https://www.perplexity.ai/)\n\nUsed [Namer UI](https://namer-ui.netlify.app/) component: Fancy Notification\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnorthstrix%2Fentry-assignment-for-cyberia","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnorthstrix%2Fentry-assignment-for-cyberia","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnorthstrix%2Fentry-assignment-for-cyberia/lists"}