Skip to content

Commit

Permalink
Some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasKarz committed Jan 24, 2023
1 parent 3178026 commit 00474ac
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VITE_WEBSITE_NAME=mYReact Template
VITE_WEBSITE_NAME=MyReact Template
VITE_WEBSITE_DESCRIPTION=This is the description to my Website
VITE_WEBSITE_KEYWORDS=kword1, keyword2, keyword3
VITE_WEBSITE_AUTHOR=mc2 advertising
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,5 +130,6 @@ module.exports = {

# [TODO]

- Complete ld+json
- Make the Pages more beauty
- Location as function
4 changes: 2 additions & 2 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ export default function Footer() {
const currentYear = new Date().getFullYear();

return (
<footer className='container w-full pb-3'>
<div className='flex justify-between'>
<footer className='w-full pb-2 bg-gray-100'>
<div className='container flex justify-between w-full mt-4'>
<div>
{' '}
<Icon
Expand Down
1 change: 1 addition & 0 deletions src/components/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export default function NavBar() {
<Navbar
fluid={false}
rounded={false}
className='bg-gray-200'
>
<Navbar.Brand>
<img
Expand Down
12 changes: 11 additions & 1 deletion src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,18 @@ footer a.active {
footer {
position: fixed;
bottom: 0;
right: 0;
left: 0;
}

nav {
position: fixed;
top: 0;
right: 0;
left: 0;
}

body {
padding-bottom: 80px;
padding: 80px 0 80px 0;
overflow: scroll;
}

0 comments on commit 00474ac

Please sign in to comment.