{"id":22051671,"url":"https://github.com/ehvenga/jd.designs-react","last_synced_at":"2026-04-12T13:03:08.108Z","repository":{"id":177001314,"uuid":"659836152","full_name":"ehvenga/jd.designs-react","owner":"ehvenga","description":"A simple landing page and mockups for an architecture firm called JD Designs.","archived":false,"fork":false,"pushed_at":"2024-02-09T10:30:54.000Z","size":77146,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-20T21:17:47.817Z","etag":null,"topics":["create-react-app-typescript","landing-page","mockup","react","typescript"],"latest_commit_sha":null,"homepage":"","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/ehvenga.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":"2023-06-28T17:02:20.000Z","updated_at":"2023-06-30T21:03:06.000Z","dependencies_parsed_at":"2023-07-02T03:37:47.535Z","dependency_job_id":null,"html_url":"https://github.com/ehvenga/jd.designs-react","commit_stats":null,"previous_names":["ehvenga/jd-designs","ehvenga/jd.designs-react"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ehvenga%2Fjd.designs-react","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ehvenga%2Fjd.designs-react/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ehvenga%2Fjd.designs-react/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ehvenga%2Fjd.designs-react/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ehvenga","download_url":"https://codeload.github.com/ehvenga/jd.designs-react/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245121748,"owners_count":20564173,"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":["create-react-app-typescript","landing-page","mockup","react","typescript"],"created_at":"2024-11-30T15:10:30.920Z","updated_at":"2026-04-12T13:03:08.073Z","avatar_url":"https://github.com/ehvenga.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# architecture_landing_page\n\n## Description\n\n- This React application is built using [Vite](https://vitejs.dev/).\n- It uses [Tailwind CSS](https://tailwindcss.com/)\n- The application is generated in [TypeScript](https://www.typescriptlang.org/).\n\n## Pre-requisites\n\n- [git](https://git-scm.com/) - v2.13 or greater\n- [NodeJS](https://nodejs.org/en/) - v16 or greater\n- [npm](https://www.npmjs.com/) - v6 or greater\n\n## Running in dev environment\n\n1.  `cd YOUR_APPLICATION`\n2.  `npm install`\n3.  `npm start`\n\n## .env file\n\nThis file contains various environment variables that you can configure.\n\n# Running the storybook\n\nWe have detected common components and have generated possible variants of it.To check the documentation of generated common components by integrating storybook, Please follow below steps.\n\n## Install and Initializes\n\n      npx storybook init\n\n## Run the Storybook\n\n      npm run storybook\n\n## Folder Structure\n\n```\n.\n├── package.json\n├── postcss.config.js\n├── vite.config.js\n├── index.html\n├── public\n│   ├── assets\n│   │   └── images --------- All Project Images\n│   ├── favicon.ico\n│   ├── manifest.json\n│   └── robots.txt\n├── README.md\n├── src\n│   ├── App.tsx\n│   ├── assets\n│   │   └── fonts ---------- Project fonts\n│   ├── components --------- UI and Detected Common Components\n│   ├── constants ---------- Project constants, eg: string consts\n│   ├── hooks -------------- Helpful Hooks\n│   ├── index.tsx\n│   ├── pages -------------- All route pages\n│   ├── Routes.tsx ---------- Routing\n│   ├── styles\n│   │   ├── index.css ------ Other Global Styles\n│   │   └── tailwind.css --- Default Tailwind modules\n│   └── util\n│       └── index.tsx ------- Helpful utils\n└── tailwind.config.js ----- Entire theme config, colors, fonts etc.\n```\n\nFor the project to build, **these files must exist with exact filenames**:\n\n- `index.html` is the page template;\n- `src/index.tsx` is the TypeScript entry point.\n\nYou may create subdirectories inside src.\n\n## Available Scripts\n\nIn the project directory, you can run:\n\n### `npm start`\n\nRuns the app in the development mode.\u003cbr\u003e\nOpen [http://localhost:5173](http://localhost:5173) to view it in the browser.\n\n### `npm test`\n\nLaunches the test runner in the interactive watch mode.\u003cbr\u003e\n\n### `npm run build`\n\nBuilds the app for production to the `build` folder.\u003cbr\u003e\n\n### `npm run eject`\n\n**Note: this is a one-way operation. Once you `eject`, you can’t go back!**\n\nIf you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time.\n\n## Installing a Dependency\n\nYou can install any dependencies (for example, React Router) with `npm`:\n\n```sh\nnpm install --save react-router\n```\n\nAlternatively you may use `yarn`:\n\n```sh\nyarn add react-router\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fehvenga%2Fjd.designs-react","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fehvenga%2Fjd.designs-react","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fehvenga%2Fjd.designs-react/lists"}