Skip to content

Commit 0f43298

Browse files
authored
Merge pull request #110 from UTDNebula/develop
Update prod
2 parents 34fcd3d + 3e7f702 commit 0f43298

File tree

18 files changed

+42
-33
lines changed

18 files changed

+42
-33
lines changed

next.config.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
/** @type {import('next').NextConfig} */
22
const nextConfig = {
33
reactStrictMode: true,
4+
async redirects() {
5+
return [
6+
{
7+
source: '/projects/jupiter',
8+
destination: '/projects/clubs',
9+
permanent: true,
10+
},
11+
];
12+
},
413
};
514

615
module.exports = nextConfig;
121 KB
Loading

public/projects/clubs/cover.png

748 KB
Loading
File renamed without changes.
File renamed without changes.
File renamed without changes.

public/projects/jupiter/cover.png

-1 MB
Binary file not shown.

src/app/projects/api/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ export default function API() {
4747
<Navbar royal={true} className="relative z-20" />
4848
<div className="mx-8 lg:mx-16 xl:mx-32 pt-6 px-6 flex flex-col items-center gap-8 rounded-3xl text-white relative overflow-hidden">
4949
<Image src={Gradient} alt="project background" fill className="-z-20" />
50-
<p className="px-16 py-2 rounded-full border-2 border-white whitespace-nowrap font-display drop-shadow-sm">
51-
API & Platform
50+
<p className="px-16 py-2 rounded-full border-2 border-white whitespace-nowrap font-display font-bold drop-shadow-sm">
51+
API & PLATFORM
5252
</p>
5353
<h1 className="text-5xl md:text-6xl font-bold text-center text-shadow">
5454
The Backbone
Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@ import Image from 'next/image';
33
import React from 'react';
44

55
import Gradient from '@/../public/images/gradient.png';
6-
import Cover from '@/../public/projects/jupiter/cover.png';
7-
import calendar from '@/../public/projects/jupiter/icons8-calendar-100.png';
8-
import community from '@/../public/projects/jupiter/icons8-community-100.png';
9-
import search from '@/../public/projects/jupiter/icons8-search-100.png';
6+
import Cover from '@/../public/projects/clubs/cover.png';
7+
import calendar from '@/../public/projects/clubs/icons8-calendar-100.png';
8+
import community from '@/../public/projects/clubs/icons8-community-100.png';
9+
import search from '@/../public/projects/clubs/icons8-search-100.png';
1010
import Footer from '@/components/Footer';
1111
import Navbar from '@/components/Navbar';
1212

1313
export const metadata: Metadata = {
14-
title: 'Jupiter',
14+
title: 'Clubs',
1515
description:
1616
'Find your community on campus: get connected with student organizations and browse events.',
1717
alternates: {
18-
canonical: '/projects/jupiter',
18+
canonical: '/projects/clubs',
1919
},
2020
};
2121

@@ -43,14 +43,14 @@ const features = [
4343
},
4444
];
4545

46-
export default function Jupiter() {
46+
export default function Clubs() {
4747
return (
4848
<>
4949
<Navbar royal={true} className="relative z-20" />
5050
<div className="mx-8 lg:mx-16 xl:mx-32 pt-6 px-6 flex flex-col items-center gap-8 rounded-3xl text-white relative overflow-hidden">
5151
<Image src={Gradient} alt="project background" fill className="-z-20" />
52-
<p className="px-16 py-2 rounded-full border-2 border-white whitespace-nowrap font-display drop-shadow-sm">
53-
JUPITER
52+
<p className="px-16 py-2 rounded-full border-2 border-white whitespace-nowrap font-display font-bold drop-shadow-sm">
53+
CLUBS
5454
</p>
5555
<h1 className="text-5xl md:text-6xl font-bold text-center text-shadow">
5656
Find your community
@@ -61,13 +61,13 @@ export default function Jupiter() {
6161
Get connected with student organizations and browse events.
6262
</h2>
6363
<div className="md:mx-4 lg:mx-8 xl:mx-16 rounded-t-2xl overflow-hidden md:mb-[-4rem] lg:mb-[-8rem] xl:mb-[-16rem]">
64-
<Image src={Cover} alt="Jupiter screenshot" />
64+
<Image src={Cover} alt="Clubs screenshot" />
6565
</div>
6666
</div>
6767
<div className="relative -top-10 w-full flex justify-center">
6868
<a
6969
className="px-10 py-6 text-2xl text-white bg-royal rounded-full hover:bg-[#3634BB] transition-colors drop-shadow-sm"
70-
href="https://jupiter.utdnebula.com"
70+
href="https://clubs.utdnebula.com"
7171
target="_blank"
7272
rel="noreferrer"
7373
>
@@ -95,7 +95,7 @@ export default function Jupiter() {
9595
<h2 className="text-5xl font-bold text-center">Interested? Learn more about our project</h2>
9696
<a
9797
className="px-6 py-3 text-white bg-royal rounded-full hover:bg-[#3634BB] transition-colors"
98-
href="https://github.com/UTDNebula/jupiter"
98+
href="https://github.com/UTDNebula/utd-clubs"
9999
target="_blank"
100100
rel="noreferrer"
101101
>

0 commit comments

Comments
 (0)