Skip to content

Commit 653ebcc

Browse files
committed
Rename Jupiter to UTD Clubs
1 parent 1ceb60a commit 653ebcc

File tree

12 files changed

+36
-27
lines changed

12 files changed

+36
-27
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: '/jupiter',
8+
destination: '/clubs',
9+
permanent: true,
10+
},
11+
];
12+
},
413
};
514

615
module.exports = nextConfig;

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.
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
>

src/components/Footer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ export default function Footer() {
3636
</div>
3737
<div className="flex flex-col items-start gap-3">
3838
<h3 className="text-xl font-semibold mb-4">Projects</h3>
39-
<Link className={linkClasses} href="/projects/jupiter">
40-
Jupiter
39+
<Link className={linkClasses} href="/projects/clubs">
40+
Clubs
4141
</Link>
4242
<Link className={linkClasses} href="/projects/trends">
4343
Trends

src/components/Navbar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ const parentItems: Array<ParentItem> = [
5858
name: 'Our Projects',
5959
children: [
6060
{
61-
name: 'Jupiter',
62-
link: '/projects/jupiter',
61+
name: 'Clubs',
62+
link: '/projects/clubs',
6363
description: 'Find and connect with student organizations',
6464
iconSrc: Users,
6565
},

0 commit comments

Comments
 (0)