Skip to content

Commit a69aead

Browse files
committed
working frontend docker
1 parent 5325297 commit a69aead

File tree

101 files changed

+3526
-436
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+3526
-436
lines changed

components/Footer.tsx

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
import Image from 'next/image';
2+
import Link from 'next/link';
3+
import { socialLinks } from '../frontend/public/data/data';
4+
5+
const Footer = () => {
6+
return (
7+
<section>
8+
<div className="sm:flex justify-between pb-10">
9+
<div className="flex flex-col gap-10">
10+
<div className="flex items-center">
11+
<Link href="/" className="flex">
12+
<Image src="assets/csesoc_logo_white.svg" width={231} height={53} alt="CSESoc Logo" />
13+
<Image
14+
src="/flag/ollie_is_hiding.png"
15+
alt="Ollie"
16+
draggable="false"
17+
width={60}
18+
height={60}
19+
className="ml-10"
20+
/>
21+
</Link>
22+
</div>
23+
<div className="grid grid-cols-8 gap-4">
24+
{socialLinks.map((item, index) => {
25+
return (
26+
<a key={index} className="" href={item.href}>
27+
<Image
28+
className="h-4 fill-white min-w-full hover:scale-125 transition-all"
29+
src={item.src}
30+
alt={item.alt}
31+
height={0}
32+
width={0}
33+
/>
34+
</a>
35+
);
36+
})}
37+
</div>
38+
</div>
39+
<div className="flex flex-col max-w-[14rem] sm:mt-0 mt-10 font-light">
40+
<p className="mb-6">B03 CSE Building K17, UNSW csesoc@csesoc.org.au</p>
41+
<p>© 2021 — CSESoc UNSW</p>
42+
</div>
43+
</div>
44+
<Image
45+
src="assets/sponsors_backdrop.svg"
46+
alt="Sponsors backdrop"
47+
height={0}
48+
width={0}
49+
className="absolute bottom-0 left-0 w-screen -z-10"
50+
/>
51+
</section>
52+
);
53+
};
54+
55+
export default Footer;

docker-compose.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
services:
2+
frontend:
3+
build: ./frontend
4+
container_name: csesoc-website-frontend
5+
ports:
6+
- "3000:3000"
7+
restart: always
8+
networks:
9+
- csesoc-website-network
10+
11+
networks:
12+
csesoc-website-network:
13+
driver: bridge
File renamed without changes.

frontend/.next/build-manifest.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@
1212
],
1313
"rootMainFiles": [],
1414
"pages": {
15+
"/": [
16+
"static/chunks/webpack.js",
17+
"static/chunks/main.js",
18+
"static/chunks/pages/index.js"
19+
],
1520
"/_app": [
1621
"static/chunks/webpack.js",
1722
"static/chunks/main.js",

frontend/.next/cache/eslint/.cache_13knus3

Lines changed: 0 additions & 1 deletion
This file was deleted.

frontend/.next/cache/images/JIGA1w+A9BG-kGSZ9mbQit2H63S6Nrc2tOmtlUwet14=/60.1717044993069.7jJIkO0g3hBUBNpNsws1PakJzhg1Qs9e8D92oNOKlFs=.webp renamed to frontend/.next/cache/images/JIGA1w+A9BG-kGSZ9mbQit2H63S6Nrc2tOmtlUwet14=/60.1717048198184.7jJIkO0g3hBUBNpNsws1PakJzhg1Qs9e8D92oNOKlFs=.webp

File renamed without changes.
Binary file not shown.
Binary file not shown.
-6.15 MB
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)