CSSS / csss-site-frontend

CSSS Website Frontend (2024 - Present)
https://new.sfucsss.org/
GNU Affero General Public License v3.0
6 stars 6 forks source link

Make About page in main app #44

Open micahdbak opened 3 months ago

micahdbak commented 3 months ago

/src/main/index.js

// ...
import { /* ... */, About } from './pages';

// ...

const router = createHashRouter([
  // ...
  { path: '/about', element: <About /> },
  // ...
]);

/src/main/pages/About.js

import React from 'react';
import { Page } from '../components';

export const About = () => {
  return (
    <Page>
      {/* ... */}
    </Page>
  );
};
micahdbak commented 2 months ago

@EarthenSky - you still want to do this?

EarthenSky commented 2 months ago

Not really, but I can do it if necessary. As before, backend & elections pages are priority atm.

If someone else is interested please attempt!

micahdbak commented 2 months ago

TODO for @micahdbak add more info about what this page should contain