The Navbar still has "Example" as the "brand". Change this to "UCSB Rec".
Also, currently, when you bring up the site in a browser, the browser tab has "Vite + React" on it.
What we want it to say is "UCSB Rec".
To do this, you need to update the value of <title> in frontend/index.html.
Acceptance Criteria
For that optional last criteria:
It may be as easy as:
expect(document.title).toBe('UCSB Rec');
But since we've never tried this in our code base before, we don't know for sure. You might need to do some digging if that doesn't work.
The Navbar still has "Example" as the "brand". Change this to "UCSB Rec".
Also, currently, when you bring up the site in a browser, the browser tab has "Vite + React" on it.
What we want it to say is "UCSB Rec".
To do this, you need to update the value of <title> in frontend/index.html.
Acceptance Criteria
For that optional last criteria:
It may be as easy as:
But since we've never tried this in our code base before, we don't know for sure. You might need to do some digging if that doesn't work.