Skip to content

Commit

Permalink
Merge pull request #35 from hollow-leaf/feat/new-web
Browse files Browse the repository at this point in the history
feat: new web
  • Loading branch information
crypto0627 authored Feb 2, 2024
2 parents 665c8b3 + 9b5e038 commit 6143fdc
Show file tree
Hide file tree
Showing 56 changed files with 5,148 additions and 193 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ghpage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- main # The branch the action should deploy from.
paths:
- 'apps/web3/**' # The path to your build output folder.
- 'apps/web/**' # The path to your build output folder.
- 'pnpm-*'
- '.github/workflows/ghpage.yml'

Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: apps/web3/out
path: apps/web/dist

deploy:
environment:
Expand Down
27 changes: 27 additions & 0 deletions apps/web/.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
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

# vscode
.vscode
12 changes: 12 additions & 0 deletions apps/web/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# HooBank - Modern UI/UX website using React.js & Tailwind CSS

![HooBank](https://i.ibb.co/BK1Hn0x/Screenshot-2022-08-08-at-4-05-48-PM.png)

### [🌟 Become a top 1% Next.js 13 developer in only one course](https://jsmastery.pro/next13)
### [πŸš€ Land your dream programming job in 6 months](https://jsmastery.pro/masterclass)

### Showcase your dev skills with practical experience and land the coding career of your dreams
πŸ’» JS Mastery Pro - https://jsmastery.pro/youtube
βœ… A special YOUTUBE discount code is automatically applied!

πŸ“™ Get the Ultimate Frontend & Backend Development Roadmaps, a Complete JavaScript Cheatsheet, Portfolio Tips, and more - https://www.jsmastery.pro/links
14 changes: 14 additions & 0 deletions apps/web/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/hoobank.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#000000" />
<title>HooBank</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
Loading

0 comments on commit 6143fdc

Please sign in to comment.