{"id":18141367,"url":"https://github.com/happyhackingspace/landing-frontend-app","last_synced_at":"2026-03-11T10:31:55.749Z","repository":{"id":259512004,"uuid":"866133497","full_name":"HappyHackingSpace/landing-frontend-app","owner":"HappyHackingSpace","description":"Happy Hacking Space Landing ","archived":false,"fork":false,"pushed_at":"2025-03-22T13:54:38.000Z","size":4479,"stargazers_count":9,"open_issues_count":19,"forks_count":3,"subscribers_count":2,"default_branch":"prod","last_synced_at":"2025-03-29T15:23:48.336Z","etag":null,"topics":["content-collections","framer-motion","nextjs","shadcn-ui","tailwindcss","typescript"],"latest_commit_sha":null,"homepage":"https://happyhacking.space","language":"TypeScript","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/HappyHackingSpace.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,"publiccode":null,"codemeta":null}},"created_at":"2024-10-01T17:48:57.000Z","updated_at":"2025-03-22T23:29:16.000Z","dependencies_parsed_at":"2025-01-07T09:32:21.653Z","dependency_job_id":"19745bf5-8980-4a16-812b-921ed4ac21c5","html_url":"https://github.com/HappyHackingSpace/landing-frontend-app","commit_stats":null,"previous_names":["happyhackingspace/landing-frontend-app"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HappyHackingSpace%2Flanding-frontend-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HappyHackingSpace%2Flanding-frontend-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HappyHackingSpace%2Flanding-frontend-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HappyHackingSpace%2Flanding-frontend-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HappyHackingSpace","download_url":"https://codeload.github.com/HappyHackingSpace/landing-frontend-app/tar.gz/refs/heads/prod","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250246727,"owners_count":21398919,"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":["content-collections","framer-motion","nextjs","shadcn-ui","tailwindcss","typescript"],"created_at":"2024-11-01T17:06:31.425Z","updated_at":"2026-03-11T10:31:55.702Z","avatar_url":"https://github.com/HappyHackingSpace.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Happy Hacking Space - Website Code\n\n![image](https://github.com/user-attachments/assets/9ca41245-8137-4f4b-ac2c-4a55ac22159b)\n\nWelcome to the website for Happy Hacking Space, a community-driven platform that brings together technology enthusiasts, creators, and innovators.\n\n## About Happy Hacking Space\n\nHappy Hacking Space is a community-driven, collaborative environment where individuals with shared interests in technology, science, and creative endeavors come together to experiment, learn, and innovate through playful exploration and clever problem-solving. We embrace the hacker spirit of curiosity and creativity, operating as a space for collaboration and skill-sharing while fostering a sense of fun in pushing the boundaries of what is possible.\n\n## What is Hacking?\n\nIn our community, hacking represents the spirit of playful intelligence and exploration. As RMS puts it in \"On Hacking\":\n\n\u003e Defining hacking can be challenging due to its variable nature. However, a common trait among many hackers is their playful, intelligent, and exploratory mindset. Thus, hacking means exploring the boundaries of what is possible with a playful spirit. Activities that demonstrate playful intelligence have hack value.\n\n## Adding a New Article to the App\n\nFollow these steps to add a new article to the app. This guide explains the structure of the markdown file and provides a template.\n\n## Article Template\n\nSave your article as a markdown (`.mdx`) file. Below is the required template:\n\n- mdx file location: `content/blog/your_post_title.mdx`\n- blog image location: `public/blog/your_post_img.jpg`\n\n```markdown\n---\ntitle: \"Your Post Title\"                 # The title of your article\nsubtitle: \"Your Post Subtitle\"           # Optional subtitle\nsummary: \"A brief summary of your post\"  # Short summary for previews\npublishedAt: \"YYYY-MM-DD\"                # Date of publication\nauthor: \"Author Name\"                    # Name of the author\ntags: [\"tag1\", \"tag2\"]                   # Relevant tags for the post\n---\n\n## Your Post Title\n\nWrite the content of your post here. You can use Markdown syntax for formatting.\n\n### Example Code Block\n\nTo include code snippets, use fenced code blocks:\n\n```Javascript\nconsole.log(\"This is a test post\");\nconst test = async () =\u003e {\n    await new Promise((resolve) =\u003e setTimeout(resolve, 1000));\n    console.log(\"This is a test post\");\n};\n\ntest();\n\nAdding an image\n\u003cimg\n  src=\"/blog/your_post_img.jpg\" \n  alt=\"A description of your image\" \n  style={{ width: \"50%\" }}\n/\u003e\n```\n\n## Technical Stack\n\nThis is a modern web application built with:\n\n- [Next.js](https://nextjs.org) - React framework for production\n- MDX for content management\n- Tailwind CSS for styling\n- TypeScript for type safety\n\n## Getting Started\n\n1. Clone the repository\n2. Install dependencies:\n\n   ```bash\n   npm install\n   # or\n   yarn install\n   # or\n   pnpm install\n   # or\n   bun install\n   ```\n\n3. Run the development server:\n\n   ```bash\n   npm run dev\n   # or\n   yarn dev\n   # or\n   pnpm dev\n   # or\n   bun dev\n   ```\n\n4. Open [http://localhost:3000](http://localhost:3000) in your browser\n\n## Community\n\nJoin our community of hackers, makers, and technology enthusiasts. Together, we explore the boundaries of what's possible through collaborative learning and creative problem-solving.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhappyhackingspace%2Flanding-frontend-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhappyhackingspace%2Flanding-frontend-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhappyhackingspace%2Flanding-frontend-app/lists"}