Skip to content

Commit

Permalink
Merge pull request #168 from CS3219-AY2425S1/feat/update-env
Browse files Browse the repository at this point in the history
update home component
  • Loading branch information
Kurtyjlee authored Nov 9, 2024
2 parents bccd4dd + d2f633f commit 6d3fd23
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions k8s/ingress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ spec:
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: nginx-ingress-session
name: nginx-ingress-all
annotations:
kubernetes.io/ingress.global-static-ip-name: nginx-api
networking.gke.io/managed-certificates: peerprep-fe-cs3219-g11-nginx-all
Expand All @@ -19,7 +19,7 @@ metadata:
spec:
ingressClassName: "gce"
rules:
- host: peerprep-fe.duckdns.org
- host: peerprep-mock-interview.duckdns.org
http:
paths:
- path: /*
Expand Down
2 changes: 1 addition & 1 deletion peerprep-fe/src/app/(main)/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use client';
import MainComponent from './components/Main';

// home component
// home component with main component
export default function Home() {
return <MainComponent />;
}

0 comments on commit 6d3fd23

Please sign in to comment.