Skip to content

Commit a2642c2

Browse files
feat: Add Cloudflare and Sentry logo (#185)
Closes #184 ## Checklist - [x] I have followed every step in the [contributing guide](https://github.com/Pujo-Atlas-Kolkata/PujoAtlasKol-Web/blob/dev/CONTRIBUTING.md) - [x] The PR title follows the convention we established [conventional-commit](https://www.conventionalcommits.org/en/v1.0.0/) - [x] I performed a functional test on my final commit --- ## Changelog Added the logos --- ## Screenshots ![image](https://github.com/user-attachments/assets/dd00a015-8f95-4a08-8f0c-2bb4030978b3) ![image](https://github.com/user-attachments/assets/f6eacf72-98de-4151-8c26-4be3c0dd691c)
2 parents c7bd642 + b979db4 commit a2642c2

File tree

6 files changed

+22
-7
lines changed

6 files changed

+22
-7
lines changed

.astro/settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"_variables": {
3-
"lastUpdateCheck": 1728288217275
3+
"lastUpdateCheck": 1729535727933
44
},
55
"devToolbar": {
66
"enabled": false

package-lock.json

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/sponsors/cloudflare.jpg

22.6 KB
Loading

public/sponsors/sentry.png

10.1 KB
Loading

src/components/shared/Footer.astro

+10-1
Original file line numberDiff line numberDiff line change
@@ -128,14 +128,23 @@ import { FaSquareFacebook, FaSquareXTwitter } from 'react-icons/fa6';
128128
</a>
129129
</span>
130130

131-
<span class="w-full">
131+
<span class="flex w-full justify-center gap-2">
132132
<a href="https://www.netlify.com">
133133
<img
134134
class="w-full h-10"
135135
src="https://www.netlify.com/v3/img/components/netlify-light.svg"
136136
alt="Deploys by Netlify"
137137
/>
138138
</a>
139+
<a
140+
href="https://www.cloudflare.com"
141+
class={cn('p-1 bg-white border border-black rounded-sm')}
142+
>
143+
<img class="h-7" src="/sponsors/cloudflare.jpg" alt="Cloudflare" />
144+
</a>
145+
<a href="https://sentry.io" class={cn('pt-2 px-1 bg-white border border-black rounded-sm')}>
146+
<img class="h-5" src="/sponsors/sentry.png" alt="Sentry" />
147+
</a>
139148
</span>
140149
</div>
141150

src/components/shared/Navbar.tsx

+6
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,12 @@ export const LargeNavbar = ({ path }: Props) => {
9191
alt="Deploys by Netlify"
9292
/>
9393
</a>
94+
<a href="https://www.cloudflare.com" className="p-1 bg-white border border-black rounded-sm">
95+
<img src="/sponsors/cloudflare.jpg" alt="Cloudflare" />
96+
</a>
97+
<a href="https://sentry.io" className="p-1 bg-white border border-black rounded-sm">
98+
<img src="/sponsors/sentry.png" alt="Sentry" />
99+
</a>
94100
</nav>
95101
);
96102
};

0 commit comments

Comments
 (0)