diff --git a/frontend/src/components/About/AboutHomepage.tsx b/frontend/src/components/About/AboutHomepage.tsx new file mode 100644 index 0000000..c8cbb76 --- /dev/null +++ b/frontend/src/components/About/AboutHomepage.tsx @@ -0,0 +1,42 @@ +import Link from "next/link"; +import Image from "next/image"; +export default function AboutHomePage() { + return ( +
+
+

ABOUT

+
+
+
+ {/* LEFT SIDE */} +
+
+ CSESoc Icon +
+

CSESoc

+ +
+ {/* RIGHT SIDE */} +
+
+

+ csesoc/README.md +

+

+ CSESoc is one of the biggest and most active societies at UNSW, catering to over 3500 CSE + students spanning across degrees in Computer Science, Software Engineering, + Bioinformatics and Computer Engineering. +

+ We are here to fulfil the social, personal and + professional needs of CSE students, and promote computing through a variety of forms. +

+ Learn more about us! +

+ +
+
+
+
+
+ ); +} \ No newline at end of file diff --git a/frontend/src/components/About/index.tsx b/frontend/src/components/About/index.tsx index 4071a9e..091a828 100644 --- a/frontend/src/components/About/index.tsx +++ b/frontend/src/components/About/index.tsx @@ -5,7 +5,6 @@ const About = () => { return (
-

01

ABOUT

diff --git a/frontend/src/components/Event/index.tsx b/frontend/src/components/Event/index.tsx index b9911cd..b9b1a0c 100644 --- a/frontend/src/components/Event/index.tsx +++ b/frontend/src/components/Event/index.tsx @@ -2,14 +2,20 @@ const Event = () => { return (
-

02

-

EVENTS

+

UPCOMING EVENTS

+

We run a wide-variety of events for fun, learning new skills and careers. For full listings, check out the CSESoc Discord or our Facebook page!

+ + + +
Placeholder
diff --git a/frontend/src/components/Landing/index.tsx b/frontend/src/components/Landing/index.tsx index b663e97..47720b0 100644 --- a/frontend/src/components/Landing/index.tsx +++ b/frontend/src/components/Landing/index.tsx @@ -25,22 +25,6 @@ const Landing = () => {

{''}

-
-

STATS

-
-
-

323,000

-

Members

-
-
-

300

-

Team Members

-
-
-

52

-

Events held

-
-
); diff --git a/frontend/src/components/Navbar.tsx b/frontend/src/components/Navbar.tsx index c23a5b5..f28f4d4 100644 --- a/frontend/src/components/Navbar.tsx +++ b/frontend/src/components/Navbar.tsx @@ -24,26 +24,21 @@ const Navbar = () => {

C:\INTERNAL STRUCTURE\{path}

-
+
-

01

-
{'//'} about us
+
{'//'} about us
-

02

-
{'//'} events
+
{'//'} events
-

03

-
{'//'} resources
+
{'//'} resources
-

04

-
{'//'} sponsors
+
{'//'} sponsors
-

05

-
{'//'} contact us
+
{'//'} contact us
diff --git a/frontend/src/components/Resources/index.tsx b/frontend/src/components/Resources/index.tsx index a6fbd63..8d2a0b0 100644 --- a/frontend/src/components/Resources/index.tsx +++ b/frontend/src/components/Resources/index.tsx @@ -12,15 +12,12 @@ const Resources = () => {
Background -
-

03

RESOURCES

- {stage1.map((item: resourceCards) => { return ( { className={`col-span-4 p-5 ${boxStyling} flex`} >
- {item.alt} + {item.alt}

{item.title}

@@ -48,8 +51,14 @@ const Resources = () => { target="_blank" className={`xl:col-span-1 col-span-4 p-5 ${boxStyling}`} > -
- {item.alt} +
+ {item.alt}

{item.title}

@@ -67,8 +76,15 @@ const Resources = () => { target="_blank" className={`md:col-span-2 col-span-4 p-5 ${boxStyling} flex`} > -
- {item.alt} +
+ {item.alt}

{item.title}

diff --git a/frontend/src/components/Sponsors/index.tsx b/frontend/src/components/Sponsors/index.tsx index e31290a..f3217f1 100644 --- a/frontend/src/components/Sponsors/index.tsx +++ b/frontend/src/components/Sponsors/index.tsx @@ -13,7 +13,6 @@ const Sponsors = () => { id="sponsors" >
-

04

SUPPORT CSESOC

diff --git a/frontend/src/pages/404.tsx b/frontend/src/pages/404.tsx new file mode 100644 index 0000000..09b3c77 --- /dev/null +++ b/frontend/src/pages/404.tsx @@ -0,0 +1,27 @@ +import Footer from '@/components/Footer'; +import Navbar from '@/components/Navbar'; + +export default function Custom404() { + return ( +
+ + +
+
+ ); +} diff --git a/frontend/src/pages/contact-us.tsx b/frontend/src/pages/contact-us.tsx index 8c5c3da..ef95158 100644 --- a/frontend/src/pages/contact-us.tsx +++ b/frontend/src/pages/contact-us.tsx @@ -8,7 +8,6 @@ export default function ContactUs() {
-

05

CONTACT US

@@ -54,10 +53,6 @@ export default function ContactUs() {
.

- {/* */} diff --git a/frontend/src/pages/index.tsx b/frontend/src/pages/index.tsx index d0ee2b7..e4620c2 100644 --- a/frontend/src/pages/index.tsx +++ b/frontend/src/pages/index.tsx @@ -1,16 +1,14 @@ import Landing from '@/components/Landing'; import Sponsors from '@/components/Sponsors/index'; -import About from '@/components/About'; import Event from '@/components/Event'; -import Resources from '@/components/Resources'; +import AboutHomePage from '@/components/About/AboutHomepage'; export default function Home() { return (
- - - - + + +
);