Skip to content

Commit 234a29d

Browse files
authored
Merge pull request #840 from w3bdesign/develop
@types/react 18.0.9
2 parents fe286e3 + bede803 commit 234a29d

File tree

5 files changed

+30
-32
lines changed

5 files changed

+30
-32
lines changed
Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
/**
22
* Footer of the application.
33
*/
4-
const Footer = () => (
5-
<footer className="w-full sm:mt-20 mt-2 sm:bottom-0 px-6 mb-28 sm:mb-2 mx-auto text-center bg-white border border-gray-300 rounded-lg shadow">
6-
<div className="p-6">
7-
Copyright &copy; {new Date().getFullYear()} Daniel / w3bdesign
8-
</div>
9-
</footer>
10-
);
11-
12-
export default Footer;
13-
4+
const Footer = () => (
5+
<footer className="w-full sm:mt-20 mt-2 sm:bottom-0 px-6 mb-28 sm:mb-2 mx-auto text-center bg-white border border-gray-300 rounded-lg shadow">
6+
<div className="p-6">
7+
Copyright &copy; {new Date().getFullYear()} Daniel / w3bdesign
8+
</div>
9+
</footer>
10+
);
11+
12+
export default Footer;

components/Header/Header.component.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import Navbar from './Navbar.component';
99
const Header = ({ title }) => (
1010
<>
1111
<Head>
12-
<title>Nextjs Ecommerce with WooCommerce {title ? title : ''}</title>
12+
<title>Next.js webshop with WooCommerce {title ? title : ''}</title>
1313
<meta name="description" content="WooCommerce webshop" />
1414
<meta name="keywords" content="Ecommerce, WooCommerce" />
1515
<meta

package-lock.json

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"license": "ISC",
1717
"dependencies": {
1818
"@apollo/client": "^3.6.2",
19-
"@types/react": "^18.0.8",
19+
"@types/react": "^18.0.9",
2020
"algoliasearch": "^4.13.0",
2121
"autoprefixer": "^10.4.7",
2222
"framer-motion": "^6.3.3",

pages/_app.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import 'nprogress/nprogress.css';
1313

1414
import client from 'utils/apollo/ApolloClient';
1515

16-
1716
Router.events.on('routeChangeStart', () => NProgress.start());
1817
Router.events.on('routeChangeComplete', () => NProgress.done());
1918
Router.events.on('routeChangeError', () => NProgress.done());

0 commit comments

Comments
 (0)