Skip to content

Commit 843ca2d

Browse files
committed
updated with proper stuff
- mark events as completed - updated in charge name and photo - updated react (cve fix) - updated all dependencies to latest
1 parent 136fa62 commit 843ca2d

File tree

13 files changed

+1088
-579
lines changed

13 files changed

+1088
-579
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup Node.js
2121
uses: actions/setup-node@v4
2222
with:
23-
node-version: "20"
23+
node-version: "24"
2424
cache: "npm"
2525

2626
- name: Install dependencies

README.md

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
This repository is for the Landing Page and Portal Page for **AEC Coding Club** for the session 2025-26.
66

7-
[GitHub Repo Link](https://github.com/aeccodingclub/Dashboard_25-26)
7+
[GitHub Repo Link](https://github.com/aeccodingclub/dashboard-25-26)
88

99
---
1010

@@ -29,8 +29,8 @@ This repository is for the Landing Page and Portal Page for **AEC Coding Club**
2929
## Setting Up
3030

3131
```bash
32-
git clone https://github.com/aeccodingclub/Dashboard_25-26.git
33-
cd Dashboard_25-26
32+
git clone https://github.com/aeccodingclub/dashboard-25-26.git
33+
cd dashboard-25-26
3434
npm install
3535
npm run dev
3636
```
@@ -54,20 +54,14 @@ git push -u origin branchname
5454
### Landing Page
5555

5656
- [x] **Hero Section** with **animations and CTA's**
57-
- [ ] Quick links for **socials**
58-
- [ ] Maybe **success stories**?
57+
- [x] Quick links for **socials**
58+
- [x] **Success stories**
5959

6060
### Portal Page
6161

6262
- [x] **Hero section** with **monthly event schedule**
63-
- [ ] **Events section** (latest three with view more button)
64-
- [ ] **Event results** (latest three with view more button)
65-
- [ ] **Core team** info (and view previous core teams)
66-
- [ ] **Blogs** (if y'all wanna continue it?)
67-
- [ ] **Projects** (maybe?)
68-
69-
---
70-
71-
## Contact
72-
73-
For any queries about this repo: [[email protected]](mailto:[email protected])
63+
- [x] **Events section**
64+
- [ ] **Event results**
65+
- [x] **Core team** info
66+
- [ ] **Blogs**
67+
- [x] **Projects**

next.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import type { NextConfig } from "next";
44

55
const nextConfig: NextConfig = {
66
output: isGitHubPages ? 'export' : 'standalone',
7-
basePath: isGitHubPages ? '/Dashboad_25-26' : '',
8-
assetPrefix: isGitHubPages ? '/Dashboad_25-26/' : '/',
7+
basePath: isGitHubPages ? '/dashboard-25-26' : '',
8+
assetPrefix: isGitHubPages ? '/dashboard-25-26/' : '/',
99
trailingSlash: true,
1010
outputFileTracingExcludes: {
1111
'/api/*': ['src/app/api/**/*'],

0 commit comments

Comments
 (0)