-
-
Notifications
You must be signed in to change notification settings - Fork 42
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
fix: Add missing footer to home page #214
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.
src/layout/Hero/HeroImage.svelte
Outdated
@@ -14,10 +14,10 @@ | |||
} | |||
|
|||
.hero-img { | |||
overflow: hidden; | |||
overflow:hidden; |
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.
Irrelevant change, incorrect formatting
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.
Ohh I did that by mistake, my bad. I have implemented the changes now:)
src/routes/+page.svelte
Outdated
@@ -4,6 +4,7 @@ | |||
import SocialHost from '$layout/Hero/SocialHost.svelte'; | |||
import Wave from '$lib/components/Wave.svelte'; | |||
import Head from '$lib/components/Head.svelte'; | |||
import FooterHost from '$layout/Footer/FooterHost.svelte'; |
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 would suggest to group imports from layout with other imports from layout
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.
thanks for your advice. I'm implementing it.
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'll close this as there's currently no design decided, and this PR would no longer be fit for the design Nevertheless, thank you much for the contribution! |
Description
closes #175
This PR addresses the issue of the missing footer on the home page of the website.
Changes Include:
Please review and provide any feedback.