{"id":22650008,"url":"https://github.com/goganotclown/personalspace","last_synced_at":"2025-04-12T02:52:07.264Z","repository":{"id":224258072,"uuid":"762823829","full_name":"GogaNotClown/PersonalSpace","owner":"GogaNotClown","description":"The best and minimalistic way to describe yourself","archived":false,"fork":false,"pushed_at":"2024-08-01T08:01:19.000Z","size":4762,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-25T22:36:20.571Z","etag":null,"topics":["adaptive","css","daisyui","html","js","minimalist","personal-website","tailwind-config","tailwindcss"],"latest_commit_sha":null,"homepage":"https://personalspacegeorge.netlify.app/","language":"CSS","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/GogaNotClown.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}},"created_at":"2024-02-24T19:40:49.000Z","updated_at":"2024-08-01T08:01:22.000Z","dependencies_parsed_at":"2024-08-01T09:28:48.330Z","dependency_job_id":"81450922-dc84-4f34-bc7d-567093aa7f27","html_url":"https://github.com/GogaNotClown/PersonalSpace","commit_stats":null,"previous_names":["goganotclown/personalspace"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GogaNotClown%2FPersonalSpace","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GogaNotClown%2FPersonalSpace/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GogaNotClown%2FPersonalSpace/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GogaNotClown%2FPersonalSpace/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GogaNotClown","download_url":"https://codeload.github.com/GogaNotClown/PersonalSpace/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248509537,"owners_count":21116043,"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":["adaptive","css","daisyui","html","js","minimalist","personal-website","tailwind-config","tailwindcss"],"created_at":"2024-12-09T08:29:52.099Z","updated_at":"2025-04-12T02:52:07.243Z","avatar_url":"https://github.com/GogaNotClown.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PersonalSpace [RU](README_RU.md) [Link to website](https://personalspacegeorge.netlify.app/)\n\nThe best and minimalistic way to describe yourself\n\n![Project Preview](https://i.postimg.cc/dQWRNj0x/image.png)\n\n## Table of Contents\n\n- [Installation](#installation)\n- [Config](#config)\n- [Technologies Used](#technologies-used)\n- [Project Status](#project-status)\n\n## Installation\n\nTo use this project, follow these steps:\n\n1. **Clone the Repository:**\n   Ensure that Git is installed on your system.\n   ```bash\n   git clone https://github.com/GogaNotClown/PersonalSpace.git\n   cd PersonalSpace\n   ```\n\n2. **Download NPM packages:**\n   Ensure that Node.js is installed on your system.\n   ```bash\n   npm install\n   ```\n\n3. **Run Project:**\n   This command will start the building command. The full command is in package.json.\n   ```bash\n   npm run dev\n   ```\n\n## Config\n\nThe tailwind.config.js file is crucial for customizing your project's appearance and behavior using TailwindCSS and\nDaisyUI. This file allows you to define custom styles, extend existing ones, and configure plugins.\n\n### Customizing Themes\n\nIn the theme section, you can extend the default TailwindCSS theme to include custom fonts or colors that are not part\nof the default configuration. For example, to add a custom font named 'Google Sans', you can do the following:\n\n```js\ntheme: {\n    extend: {\n        fontFamily: {\n            custom: ['Google Sans', 'sans-serif']\n        }\n    }\n}\n```\n\nThis code snippet adds 'Google Sans' as a custom font, which you can then use throughout your project by applying the\nfont-custom class. Custom fonts are located in the src/fonts directory.\n\n### DaisyUI Themes\n\nDaisyUI provides a set of pre-styled themes that you can use to quickly change the look and feel of your project. In the\ndaisyui section, you can specify which themes you want to use. For example:\n\n```js\ndaisyui: {\n    themes: [\n        \"winter\",\n        \"luxury\",\n    ]\n}\n```\n\nThis configuration enables the 'winter' and 'luxury' themes. You can switch between themes by applying the corresponding\nclass to your HTML elements, such as theme-winter or theme-luxury. More themes [here](https://daisyui.com/docs/themes/).\n\n### Adding Plugins\n\nThe plugins section is where you can add any TailwindCSS plugins that you want to use in your project. For\nexample, to use DaisyUI, you would include it like this:\n\n```js\nplugins: [\n    require(\"daisyui\")\n]\n```\n\nThis code snippet enables DaisyUI, allowing you to use its pre-styled components in your project.\n\n### Content Configuration\n\nThe content property is used by TailwindCSS to purge unused styles in production builds. It should include paths to all\nof your project's HTML and JavaScript files so that TailwindCSS can accurately determine which styles are being used.\nFor example:\n\n```js\ncontent: [\n    \"./src/**/*.{html,js}\",\n    \"./node_modules/daisyui/**/*.js\"\n]\n```\n\nThis configuration tells TailwindCSS to scan all .html and .js files in the src directory and any JavaScript files\nwithin the node_modules/daisyui directory.\n\nBy customizing the tailwind.config.js file, you can tailor the look and feel of your project to your specific needs,\nmaking it easier to create a unique and personalized user experience.\n\n## Technologies Used\n\n- HTML\n- CSS\n- JS (JavaScript)\n- [TailwindCSS](https://tailwindcss.com/)\n- [daisyUI](https://daisyui.com/)\n\n## Project Status\n\nCompleted\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgoganotclown%2Fpersonalspace","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgoganotclown%2Fpersonalspace","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgoganotclown%2Fpersonalspace/lists"}