Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,12 @@ This project adheres to [Semantic Versioning](https://semver.org).

- Copy paste /course-unions to /course-unions/unions


## [1.0.0 - 25/11/03]

### Fixed

- Made the awards and grants table visible on mobile (fixed formatting issue)
---

## [1.0.0 - 25/09/07]
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,3 @@ Aryan Aggarwal
Shirley Zhang
Stanley Pang
Rashu Sharda
Aryan Aggarwal
2 changes: 1 addition & 1 deletion app/about/assu/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default function About() {
<Divider margin="0" />
<ContactInfoGrid />
<Divider borderTopWidth="3px" margin="0" />
<MapSection title="" description="" className="py-0! mb-10" />
<MapSection title="" description="" className="!py-8" />
<Divider borderTopWidth="3px" />
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/about/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default function About() {
<Divider margin="0" />
<ContactInfoGrid />
<Divider borderTopWidth="3px" margin="0" />
<MapSection title="" description="" className="py-0! mb-10" />
<MapSection title="" description="" className="!py-8" />
<Divider borderTopWidth="3px" />
</div>
</div>
Expand Down
28 changes: 15 additions & 13 deletions app/contact-us/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -226,18 +226,20 @@ export default function ContactUs() {
{/* Contact Information Section - 4 columns */}
<div className="mb-8">
<div className="grid grid-cols-1 md:grid-cols-4 gap-8 py-8">
{/* Column 1 - Three dots SVG and Contact Us */}
<div className="text-left">
<div className="mb-4 flex justify-start">
<Image
src="/svg/hamburger-menu.svg"
alt=""
width={40}
height={40}
className="w-10 h-10 text-gray-darker"
/>
{/* Column 1 - Contact Us */}
<div className="text-left flex flex-col justify-end h-full">
<div className="mb-4 flex justify-start gap-3">
<svg width="40" height="40" viewBox="0 0 40 40" className="text-pink">
<circle cx="20" cy="20" r="18" fill="none" stroke="currentColor" strokeWidth="3" />
</svg>
<svg width="40" height="40" viewBox="0 0 40 40" className="text-pink">
<circle cx="20" cy="20" r="20" fill="currentColor" />
</svg>
<svg width="40" height="40" viewBox="0 0 40 40" className="text-pink">
<circle cx="20" cy="20" r="18" fill="none" stroke="currentColor" strokeWidth="3" />
</svg>
</div>
<h3 className="text-base font-sans text-gray-darker font-semibold">Contact Us</h3>
<h3 className="text-3xl font-sans text-gray-darker font-semibold">Contact Us</h3>
</div>

{/* Column 2 - Address */}
Expand Down Expand Up @@ -274,7 +276,7 @@ export default function ContactUs() {
alt="LinkedIn"
width={24}
height={24}
className="w-6 h-6 hover:opacity-75 transition-opacity"
className="w-6 h-6 hover:opacity-75 transition-opacity brightness-0"
/>
</a>
<a
Expand All @@ -288,7 +290,7 @@ export default function ContactUs() {
alt="Instagram"
width={24}
height={24}
className="w-6 h-6 hover:opacity-75 transition-opacity"
className="w-6 h-6 hover:opacity-75 transition-opacity brightness-0"
/>
</a>
</div>
Expand Down
10 changes: 10 additions & 0 deletions app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -280,4 +280,14 @@ body {
.font-bitter {
font-family: var(--font-bitter), serif !important;
}

/* Hide scrollbar but keep functionality */
.scrollbar-hide {
-ms-overflow-style: none;
scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
display: none;
}
}
1 change: 1 addition & 0 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { Questrial, Bitter } from "next/font/google";
import "./globals.css";
import Header from "@/components/layout/Header";
import Footer from "@/components/layout/Footer";
import "leaflet/dist/leaflet.css";

const questrial = Questrial({
weight: "400",
Expand Down
2 changes: 1 addition & 1 deletion app/news/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export default function News() {
return <div>News</div>;
}
}
268 changes: 0 additions & 268 deletions components/common/GoogleMap.tsx

This file was deleted.

Loading
Loading