-
Notifications
You must be signed in to change notification settings - Fork 0
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
dragon on left #53
base: dev
Are you sure you want to change the base?
dragon on left #53
Conversation
src/app/page.tsx
Outdated
<div className="bg-csa-tan-100"> | ||
<div className="grid grid-flow-col grid-rows-3 gap-4"> | ||
<Image | ||
src="/home/dragon.png" |
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.
src="/home/dragon.png" | |
src="/home/dragon.png" |
Import it at the top as so --
Import Dragon from "@/public/home/dragon.png"
then your src here will just be src={Dragon}
src/app/page.tsx
Outdated
width={450} | ||
height={450} |
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.
don't hardcode these properties
src/app/page.tsx
Outdated
<div className="bg-csa-tan-100 pt-[12.2vh] md:pt-[14.4vh]"> | ||
<MissionStatement /> | ||
<div className="bg-csa-tan-100"> | ||
<div className="grid grid-flow-col grid-rows-3 gap-4"> |
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.
<div className="grid grid-flow-col grid-rows-3 gap-4"> | |
<div className="grid grid-flow-col grid-rows-3 gap-4"> |
you're doing a lot of extra work than you need to, all you have to do is absolutely position the dragon to the left side of the page
Update Images to Webp
No description provided.