-
Notifications
You must be signed in to change notification settings - Fork 2
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
Implement base layout #12
Conversation
This pull request is being automatically deployed with Vercel (learn more). 🔍 Inspect: https://vercel.com/laurabeatriserafim/floripamais/nnmbaziwx |
|
||
const App: React.FC<AppProps> = ({ Component, pageProps }) => ( | ||
<> | ||
<Head> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;600&display=swap" rel="stylesheet" /> |
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've removed the self-hosted fonts since they aren't working - I still don't know why
But it's important to check if the fonts are taking too long to download and if it is - Let's try to solve the issue with the self-hosted fonts
Should add an animation for the mobile navbar - Maybe we can use |
|
Done on 71664d7 |
The styles aren't being purged correctly... For instance, the
|
Fixed on 26bcd71 |
The extensions were wrong. It should purge files with the following extensions: In production, it wasn't finding any files with |
This PR implements the base layout, which is the Header and Footer components.