Skip to content

Commit

Permalink
git intialized
Browse files Browse the repository at this point in the history
  • Loading branch information
mujhusain committed Jul 21, 2023
0 parents commit 60dfbf7
Show file tree
Hide file tree
Showing 80 changed files with 9,537 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: Deploy

on:
push:
branches:
- main

jobs:
build:
name: Build
runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v2

- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 16

- name: Install dependencies
uses: bahmutov/npm-install@v1

- name: Build project
run: npm run build

- name: Upload production-ready build files
uses: actions/upload-artifact@v2
with:
name: production-files
path: ./dist

deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'

steps:
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: production-files
path: ./dist

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
27 changes: 27 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
.eslintrc.cjs
.env
yarn.lock
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# react-admin-ui
React Admin Panel

<img width="1431" alt="Screenshot 2023-07-19 at 1 18 05 AM" src="https://github.com/mujhusain/react-admin-ui/assets/93472360/db54b09a-0306-47cb-a2f0-8d032d95a0b0">
<img width="1431" alt="Screenshot 2023-07-19 at 1 18 25 AM" src="https://github.com/mujhusain/react-admin-ui/assets/93472360/9188214d-6b0a-48cc-85dc-dd6f2271e0cf">
All users List
<img width="1431" alt="Screenshot 2023-07-19 at 1 19 54 AM" src="https://github.com/mujhusain/react-admin-ui/assets/93472360/4ae2f67c-b39c-4d8f-afc5-ae801a28aa41">
Single User Detail Page
<img width="1431" alt="Screenshot 2023-07-19 at 1 19 45 AM" src="https://github.com/mujhusain/react-admin-ui/assets/93472360/e879cf0b-b63b-4905-b5a1-3041099f7a76">
Products List Page
<img width="1431" alt="Screenshot 2023-07-19 at 1 20 01 AM" src="https://github.com/mujhusain/react-admin-ui/assets/93472360/83ab43b0-897b-495b-a469-dabd68f623fc">
Single Product Page
<img width="1431" alt="Screenshot 2023-07-19 at 1 20 16 AM" src="https://github.com/mujhusain/react-admin-ui/assets/93472360/186b0402-e267-4c20-9057-5032e925ea1a">
Responsive Design
<img width="879" alt="Screenshot 2023-07-19 at 1 20 48 AM" src="https://github.com/mujhusain/react-admin-ui/assets/93472360/be4d3ecb-d87f-403c-bc6e-398e41a56a3a">
# react-admin-ui
18 changes: 18 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Lama Dev Admin Dashboard" />
<title>React Admin Dashboard</title>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading

0 comments on commit 60dfbf7

Please sign in to comment.