Skip to content

Commit

Permalink
Merge branch 'adarsh-dev' of https://github.com/hack4bengal/s3 into a…
Browse files Browse the repository at this point in the history
…darsh-dev
  • Loading branch information
apneduniya committed Jun 4, 2024
2 parents 7f52b71 + 444bd57 commit f87db67
Show file tree
Hide file tree
Showing 150 changed files with 4,739 additions and 1,762 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,16 @@ on:
- main

jobs:

Deploy-Production:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Vercel CLI
run: npm install --global vercel@canary
- name: Pull Vercel Environment Information
run:
vercel pull --yes --environment=production --token=${{
run: vercel pull --yes --environment=production --token=${{
secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
run: vercel deploy --force --prod --token=${{ secrets.VERCEL_TOKEN }}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@ dist-ssr
*.sln
*.sw?

.env
.env
.vercel
13 changes: 13 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,16 @@
<meta charset="UTF-8" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">

<title>Hack4Bengal 3.0</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap"
rel="stylesheet">

<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
Expand All @@ -26,6 +31,14 @@

<body>
<div id="root"></div>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-PD85K5W3PC"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());

gtag('config', 'G-PD85K5W3PC');
</script>
<script type="module" src="/src/main.jsx"></script>
</body>

Expand Down
Loading

0 comments on commit f87db67

Please sign in to comment.