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

Creating navbar #2

Merged
merged 25 commits into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
127d7ce
Adding basic navbar buttons
FordoA455 Nov 3, 2024
cc45dcd
Adding nav bar scroll functionality
FordoA455 Nov 3, 2024
c78a203
Stylizing nav bar
FordoA455 Nov 3, 2024
1846fd9
Adding mvhacks icon and making navbar fixed
FordoA455 Nov 4, 2024
95a3ed8
making section colors more clear and bringing navbar front
FordoA455 Nov 4, 2024
ebc2946
adding title, subtitle, etc.
miaravioli Nov 5, 2024
c1f0f71
connect firebase
emilymarkova Nov 12, 2024
01794c7
Merge pull request #4 from mvhacks/firebase
emilymarkova Nov 12, 2024
57acbb7
update
emilymarkova Nov 12, 2024
bc03c98
update package-lock.json
emilymarkova Nov 12, 2024
153e6b2
Merge pull request #5 from mvhacks/firebase
emilymarkova Nov 12, 2024
de8cfb9
Adding drawer with menu icon
FordoA455 Nov 18, 2024
db3f2c6
Adding finishing touches
FordoA455 Nov 18, 2024
8f61995
Adding basic navbar buttons
FordoA455 Nov 3, 2024
26cadb9
Adding nav bar scroll functionality
FordoA455 Nov 3, 2024
c418f97
Stylizing nav bar
FordoA455 Nov 3, 2024
3d129c1
Adding mvhacks icon and making navbar fixed
FordoA455 Nov 4, 2024
c47697d
making section colors more clear and bringing navbar front
FordoA455 Nov 4, 2024
d5adbaf
Adding drawer with menu icon
FordoA455 Nov 18, 2024
6fcc8d0
Adding finishing touches
FordoA455 Nov 18, 2024
1ecebe0
Merge branch 'navbar' of https://github.com/mvhacks/website-8.0 into …
FordoA455 Nov 19, 2024
07c2f15
Fixing lint issues
FordoA455 Nov 19, 2024
0b4b03f
Fixing lint issues
FordoA455 Nov 19, 2024
7179d2f
Merge branch 'navbar' of https://github.com/mvhacks/website-8.0 into …
FordoA455 Nov 19, 2024
622599b
Moving drawer to the left
FordoA455 Nov 20, 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
1 change: 1 addition & 0 deletions .firebase/hosting.YnVpbGQ.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
index.html,1731389242303,b1cc6d31dd2f75bec3abb194c75a17fdc2d94a132b2f2ab82d3002910b6fdbae
5 changes: 5 additions & 0 deletions .firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "mvhacks-3b72a"
}
}
20 changes: 20 additions & 0 deletions .github/workflows/firebase-hosting-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# This file was auto-generated by the Firebase CLI
# https://github.com/firebase/firebase-tools

name: Deploy to Firebase Hosting on merge
on:
push:
branches:
- main
jobs:
build_and_deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci && npm run build
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: ${{ secrets.GITHUB_TOKEN }}
firebaseServiceAccount: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_MVHACKS_3B72A }}
channelId: live
projectId: mvhacks-3b72a
21 changes: 21 additions & 0 deletions .github/workflows/firebase-hosting-pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# This file was auto-generated by the Firebase CLI
# https://github.com/firebase/firebase-tools

name: Deploy to Firebase Hosting on PR
on: pull_request
permissions:
checks: write
contents: read
pull-requests: write
jobs:
build_and_preview:
if: ${{ github.event.pull_request.head.repo.full_name == github.repository }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci && npm run build
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: ${{ secrets.GITHUB_TOKEN }}
firebaseServiceAccount: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_MVHACKS_3B72A }}
projectId: mvhacks-3b72a
16 changes: 16 additions & 0 deletions firebase.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"hosting": {
"public": "build",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
264 changes: 257 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading