Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ jobs:
Linux:
runs-on: ubuntu-latest
steps:
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 22.20.0
- name: Clone
uses: actions/checkout@v2
- name: Install dependencies
Expand Down
20 changes: 20 additions & 0 deletions app/events/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
"use client"
import type { NextPage } from 'next';
import '@/src/styles/reset.scss';

import WIP from "@/src/sections/WIP-Page";
import NavigationBar from '@/src/components/navbar';
import Footer from '@/src/components/footer'
// here we will compile all the sections of the website together

const EventsPage: NextPage = () => {
return (
<main>
<NavigationBar />
<WIP />
<Footer />
</main>
);
};

export default EventsPage;
4 changes: 3 additions & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={dm_sans.className}>{children}</body>
<body className={`${dm_sans.className}`}>
{children}
</body>
</html>
);
}
20 changes: 20 additions & 0 deletions app/resources/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
"use client"
import type { NextPage } from 'next';
import '@/src/styles/reset.scss';

import WIP from "@/src/sections/WIP-Page";
import NavigationBar from '@/src/components/navbar';
import Footer from '@/src/components/footer'
// here we will compile all the sections of the website together

const ResourcesPage: NextPage = () => {
return (
<main>
<NavigationBar />
<WIP />
<Footer />
</main>
);
};

export default ResourcesPage;
6 changes: 5 additions & 1 deletion public/assets/embeds/discord.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 11 additions & 1 deletion public/assets/embeds/email.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion public/assets/embeds/instagram.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions public/assets/footer_proj_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/assets/proj_logo.png
Binary file not shown.
5 changes: 5 additions & 0 deletions public/assets/proj_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading