Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mobile responsive #13

Open
wants to merge 34 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
30adb1b
WIP
PrimordialOrigin Jul 3, 2024
0fa3519
Working progress
PrimordialOrigin Jul 3, 2024
6c844d6
should more data
PrimordialOrigin Jul 3, 2024
06f6258
WIP
PrimordialOrigin Jul 3, 2024
83ff5ac
update
PrimordialOrigin Jul 3, 2024
dcf42e2
Update
PrimordialOrigin Jul 3, 2024
c65b47c
Last Update
PrimordialOrigin Jul 3, 2024
4282735
Last Update
PrimordialOrigin Jul 3, 2024
dc50dfb
WIP
PrimordialOrigin Jul 4, 2024
ea00473
Merge branch 'reviews'
PrimordialOrigin Jul 4, 2024
760e849
Revert "Merge branch 'reviews'"
PrimordialOrigin Jul 4, 2024
b7730e9
UPDATE
PrimordialOrigin Jul 4, 2024
c7cc679
Last Update
PrimordialOrigin Jul 4, 2024
5dc716c
UPDATE
PrimordialOrigin Jul 4, 2024
9bfa58e
UPDATE
PrimordialOrigin Jul 4, 2024
be643cf
Updated config.yml
PrimordialOrigin Jul 4, 2024
c2154fe
Updated config.yml
PrimordialOrigin Jul 4, 2024
acf8ccf
Components Grouped In Separate Folders
PrimordialOrigin Jul 4, 2024
e0eb8b3
Merge pull request #2 from PrimordialOrigin/folder-restructuring
PrimordialOrigin Jul 4, 2024
e138f78
Username entry
PrimordialOrigin Jul 4, 2024
f5e492d
added style file in components folder to work on the aesthistics
ragmer09toske Jul 4, 2024
d770f46
added new a new library Google's Materail UI, make sure to hit npm in…
ragmer09toske Jul 4, 2024
d943d31
added a new component, bottom navigation, the aim is to make transiti…
ragmer09toske Jul 4, 2024
978a4ae
added breadcrumbs still working towards ease transititoning
ragmer09toske Jul 4, 2024
38b82a7
added User Interface thats more visible and attractive to the user to…
ragmer09toske Jul 4, 2024
b112ca0
Merge pull request #3 from PrimordialOrigin/user-page
PrimordialOrigin Jul 5, 2024
3fe2090
Updated config.yml
PrimordialOrigin Jul 5, 2024
b01b897
redoing this commit to marge with the main branch
ragmer09toske Jul 5, 2024
56c583e
added a drawer bar file, in under Navigation, like the breadcrumbs we…
ragmer09toske Jul 5, 2024
05c2824
Merge pull request #4 from PrimordialOrigin/UX/UI
PrimordialOrigin Jul 5, 2024
e294cc6
Configured Tailwind Css For Fast styling
ragmer09toske Jul 5, 2024
cbdcf48
Merge branch 'main' of github.com:PrimordialOrigin/aca-erp2022-2-Quiz
ragmer09toske Jul 5, 2024
ff542de
Responsivity on Mobile devises, also completed the issue on red color…
ragmer09toske Jul 5, 2024
0dc9727
temporary fix on the red error issue, added a timer to remove the .wr…
ragmer09toske Jul 5, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 45 additions & 19 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,30 +1,56 @@
version: 2.1

orbs:
heroku: circleci/heroku@0.0.10

jobs:
build:
preview_deployment:
docker:
- image: circleci/node:10.16.3
working_directory: ~/repo
- image: cimg/node:20.5.0
environment:
VERCEL_ORG_ID: $VERCEL_ORG_ID
VERCEL_PROJECT_ID: $VERCEL_PROJECT_ID
steps:
- checkout
# install dependencies
- run:
name: Install Dependencies
command: npm install
#- run:
# name: Run tests
# command: npm run test
name: Install Vercel CLI
command: sudo npm install --global vercel@latest
- run:
name: Pull Vercel Environment Information
command: sudo vercel pull --yes --environment=preview --token=$VERCEL_TOKEN
- run:
name: Build Project Artifacts
command: sudo vercel build --token=$VERCEL_TOKEN
- run:
name: Deploy Project Artifacts to Vercel
command: sudo vercel deploy --prebuilt --token=$VERCEL_TOKEN

production_deployment:
docker:
- image: cimg/node:20.5.0
environment:
VERCEL_ORG_ID: $VERCEL_ORG_ID
VERCEL_PROJECT_ID: $VERCEL_PROJECT_ID
steps:
- checkout
- run:
name: Install Vercel CLI
command: sudo npm install --global vercel@latest
- run:
name: Pull Vercel Environment Information
command: sudo vercel pull --yes --environment=production --token=$VERCEL_TOKEN
- run:
name: Build Project Artifacts
command: sudo vercel build --prod --token=$VERCEL_TOKEN
- run:
name: Deploy Project Artifacts to Vercel
command: sudo vercel deploy --prebuilt --prod --token=$VERCEL_TOKEN

workflows:
heroku_deploy:
version: 2
preview_and_production:
jobs:
- build
- heroku/deploy-via-git: # Use the pre-configured job, deploy-via-git
requires:
- build
- preview_deployment:
filters:
branches:
ignore: /main/
- production_deployment:
filters:
branches:
only: main
only: /main/
Loading