{"id":22494885,"url":"https://github.com/code-beaker/fylo-dark-production","last_synced_at":"2026-04-29T18:34:40.519Z","repository":{"id":235746852,"uuid":"791148751","full_name":"Code-Beaker/fylo-dark-production","owner":"Code-Beaker","description":"Fylo Landing Page - Dark","archived":false,"fork":false,"pushed_at":"2024-04-24T07:23:59.000Z","size":647,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-27T21:14:17.355Z","etag":null,"topics":["html","sass","scss","static-website","vite"],"latest_commit_sha":null,"homepage":"https://fylo-dark-production-code-beaker.netlify.app/","language":"HTML","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/Code-Beaker.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}},"created_at":"2024-04-24T07:23:55.000Z","updated_at":"2024-04-24T10:08:17.000Z","dependencies_parsed_at":"2024-04-24T13:45:28.317Z","dependency_job_id":"9d09c5b0-5357-46db-90ec-d95b93708b23","html_url":"https://github.com/Code-Beaker/fylo-dark-production","commit_stats":null,"previous_names":["code-beaker/fylo-dark-production"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Code-Beaker/fylo-dark-production","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Code-Beaker%2Ffylo-dark-production","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Code-Beaker%2Ffylo-dark-production/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Code-Beaker%2Ffylo-dark-production/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Code-Beaker%2Ffylo-dark-production/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Code-Beaker","download_url":"https://codeload.github.com/Code-Beaker/fylo-dark-production/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Code-Beaker%2Ffylo-dark-production/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32439295,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T18:12:22.909Z","status":"ssl_error","status_checked_at":"2026-04-29T18:11:33.322Z","response_time":110,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["html","sass","scss","static-website","vite"],"created_at":"2024-12-06T19:18:27.193Z","updated_at":"2026-04-29T18:34:40.497Z","avatar_url":"https://github.com/Code-Beaker.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Fylo Landing Page - Dark version\n\nThis is a solution to the Fylo Landing Page Challenge from [Frontend Mentor](https://frontendmentor.io)\n\n## Preview 🖼\n\nSee how it looks on different screens\n\n### Mobile preview 📱\n\nHere's how it looks on Mobile phones:\n\n![Mobile Preview Image](./screenshot-mobile.png)\n\n### Desktop preview 🖥\n\nHere's how it looks on desktop and laptop screens:\n\n![Mobile Preview Image](./screenshot-desktop.png)\n\n## Tools and tech 🛠\n\nHere's what I used for creating this amazing project!\n\n- [**Visual Studio Code**](https://code.visualstudio.com) \u003cimg src=\"https://code.visualstudio.com/assets/images/code-stable.png\" width=\"15px\"/\u003e\n- [**Vite**](https://vitejs.dev) - to compile SCSS \u003cimg src=\"https://vitejs.dev/logo.svg\" width=\"15px\"/\u003e\n- [**SCSS**](https://sass-lang.com/) \u003cimg src=\"https://sass-lang.com/assets/img/logos/logo.svg\" width=\"15px\"/\u003e\n- [**Mozilla Firefox**](https://mozilla.org/firefox) \u003cimg src=\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a0/Firefox_logo%2C_2019.svg/120px-Firefox_logo%2C_2019.svg.png\" width=\"15px\"/\u003e\n- **Javascript** 👇\n\n```js\nimport \"./scss/style.scss\";\n```\n\n**Yes, that's all.**\n\n## Process 🗺\n\n### Project Initialization \u003cimg src=\"https://vitejs.dev/logo.svg\" width=\"20px\"/\u003e\n\nInitialize a new project with [**Vite**](https://vitejs.dev).\n\n```\nnpm create vite@latest -- --template vanilla my-app\n```\n\n### Installing dependencies\n\nInstalling dependencies is essential for vite projects to work. So, the next step is to install them.\n\n```\ncd my-app\nnpm install\n```\n\n### Installing SASS package \u003cimg src=\"https://sass-lang.com/assets/img/logos/logo.svg\" width=\"25px\"/\u003e\n\nWithout installing this package, we can't compile and run our SASS/SCSS project.\n\n```\nnpm add -D sass\n```\n\n### Cleaning up the folders\n\nI deleted the pre-installed files and created my own. Stored all the images in the `public` directory.\n\n### Running the live preview\n\n```\nnpm run dev\n```\n\n## Links 🔗\n\n- GitHub repository: [**Code-Beaker/fylo-page-dark-code-beaker**](https://github.com/Code-Beaker/fylo-page-dark)\n- Vercel Deploy: [PREVIEW BUILD](https://fylo-page-dark-code-beaker.vercel.app/)\n- Vercel Deploy: [**PRODUCTION BUILD**]()\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcode-beaker%2Ffylo-dark-production","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcode-beaker%2Ffylo-dark-production","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcode-beaker%2Ffylo-dark-production/lists"}