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 [email protected]</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.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,32 @@
1-
{}
1+
{
2+
"../../node_modules/@splinetool/runtime/build/runtime.js -> ./boolean.js": {
3+
"id": "../../node_modules/@splinetool/runtime/build/runtime.js -> ./boolean.js",
4+
"files": [
5+
"static/chunks/node_modules_splinetool_runtime_build_boolean_js.js"
6+
]
7+
},
8+
"../../node_modules/@splinetool/runtime/build/runtime.js -> ./navmesh.js": {
9+
"id": "../../node_modules/@splinetool/runtime/build/runtime.js -> ./navmesh.js",
10+
"files": [
11+
"static/chunks/node_modules_splinetool_runtime_build_navmesh_js.js"
12+
]
13+
},
14+
"../../node_modules/@splinetool/runtime/build/runtime.js -> ./opentype.js": {
15+
"id": "../../node_modules/@splinetool/runtime/build/runtime.js -> ./opentype.js",
16+
"files": [
17+
"static/chunks/node_modules_splinetool_runtime_build_opentype_js.js"
18+
]
19+
},
20+
"../../node_modules/@splinetool/runtime/build/runtime.js -> ./physics.js": {
21+
"id": "../../node_modules/@splinetool/runtime/build/runtime.js -> ./physics.js",
22+
"files": [
23+
"static/chunks/node_modules_splinetool_runtime_build_physics_js.js"
24+
]
25+
},
26+
"../../node_modules/@splinetool/runtime/build/runtime.js -> ./process.js": {
27+
"id": "../../node_modules/@splinetool/runtime/build/runtime.js -> ./process.js",
28+
"files": [
29+
"static/chunks/node_modules_splinetool_runtime_build_process_js.js"
30+
]
31+
}
32+
}

0 commit comments

Comments
 (0)