diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 7c435d0a..00000000 Binary files a/.DS_Store and /dev/null differ diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ed9421b..09dd3dcf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -40,7 +40,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - updated `package.json` commands for macOs - swipeable CardsColumns.js on mobile -## Unreleased +## 1.2.0 ### Added @@ -57,6 +57,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - still got questions section to about page - Contact us cards section to contact page - Linkedin link to footer +- Next.js 13 ### Fixed @@ -77,3 +78,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - next.js warning - no stylesheets in head component - CardColumns refactoring to accept an array of card objects as props - styles on newsletter button and contact page + +## Unreleased + +### Added + +### Fixed diff --git a/components/containers/Card.js b/components/containers/Card.js index 01671d82..7bc93b0f 100644 --- a/components/containers/Card.js +++ b/components/containers/Card.js @@ -1,4 +1,4 @@ -import Image from 'next/image'; +import Image from 'next/legacy/image'; import Link from 'next/link'; import styles from '@/styles/Card.module.scss'; diff --git a/components/containers/Member.js b/components/containers/Member.js index e8a60c0a..ebd440d0 100644 --- a/components/containers/Member.js +++ b/components/containers/Member.js @@ -1,4 +1,4 @@ -import Image from 'next/image'; +import Image from 'next/legacy/image'; import styles from '@/styles/Member.module.scss'; export default function Member({ diff --git a/components/containers/TwoColumn.js b/components/containers/TwoColumn.js index 790113cf..8e2dd2f9 100644 --- a/components/containers/TwoColumn.js +++ b/components/containers/TwoColumn.js @@ -1,4 +1,4 @@ -import Image from 'next/image'; +import Image from 'next/legacy/image'; import ButtonLink from '@/components/buttons/ButtonLink'; import Container from '@/components/containers/Container'; import styles from '@/styles/TwoColumn.module.scss'; diff --git a/components/layout/Footer.js b/components/layout/Footer.js index 943c51bf..a48a1ad3 100644 --- a/components/layout/Footer.js +++ b/components/layout/Footer.js @@ -1,8 +1,7 @@ -import Link from 'next/link'; import footerStyles from '@/styles/Footer.module.scss'; import { linksNav, linksSocial } from '@/utils/links'; import NewsletterSubscribe from '@/components/mailchimp/NewsletterSubscribe'; -import Image from 'next/image'; +import Image from 'next/legacy/image'; import Container from '@/components/containers/Container'; export default function Footer() { @@ -10,24 +9,26 @@ export default function Footer() {