-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uploaded all the images of the previous website and the base template of the last site's homepage #9
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I still need to take a closer look. I'm going to set up prettier in another pull request so you can format the files.
frontend/package-lock.json
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use pnpm for install
corepack enable & pnpm install
@@ -16,7 +19,21 @@ export default function RootLayout({ | |||
}>) { | |||
return ( | |||
<html lang="en"> | |||
<body className={inter.className}>{children}</body> | |||
<head> | |||
<meta charSet="utf-8"/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do you have experience with Next.js?
yo should use:
https://nextjs.org/docs/app/building-your-application/optimizing/metadata
@@ -0,0 +1,345 @@ | |||
* { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tailwind already handles most of this., so some styles classes should be removed
<body className={inter.className}> | ||
<Navbar></Navbar> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it should be <Navbar />
frontend/src/app/navigationbar.tsx
Outdated
<nav> | ||
<ul className="flex justify-between text-2xl"> | ||
<li className="mr-6"> | ||
<a className="text-blue-500 hover:text-blue-800" href="/">Home</a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
</a> | ||
return ( <div> | ||
<header> | ||
<img src="img/logo.png" width="500" height="500" alt="Retro Olympics"/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<h3>The 2023-2024 season is coming!</h3> | ||
<h2>Gather your team and prepare for the...</h2> | ||
<h1>RETRO OLYMPICS!</h1> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if this is a text you should use the p tag instead, don't use headers for non titles
Maybe it is worth it to restructure the folders in this, but right now, this seemed like an okay start.