steelesh / UCollab

IT SR Capstone project
https://steelesh.github.io/UCollab/
0 stars 0 forks source link

Graphics #71

Closed alfardni closed 1 week ago

alfardni commented 1 week ago

This pull request includes the following updates:

Favicon Implementation:

Navbar Logo Integration:

Additional Notes:

steelesh commented 1 week ago

Hi @alfardni, a few things:

When running, I got some errors in the web console (see attached):

Screenshot 2024-11-10 at 6 26 18 PM

Also, unfortunately there's merge conflicts that have to be resolved before the pr can be merged

thomasza92 commented 1 week ago

This PR needs to be redone from scratch. The new graphics branch is way out of sync with main, being nearly 66 commits behind. I would suggest deleting the current graphics branch and creating a new branch here that is based off main and then implementing your changes.

Although the confusion is probably based on the branch being so far out of sync, just to clarify, _document.tsx is unnecessary. These changes should be made in _app.tsx, which is where the following code should go between the existing <Head> tags:

        <link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
        <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
        <link rel="shortcut icon" href="/favicon.ico" />
        <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
        <meta name="apple-mobile-web-app-title" content="UCollab" />
        <link rel="manifest" href="/site.webmanifest" />