diff --git a/examples/app-dir-mdx/app/page.tsx b/examples/app-dir-mdx/app/page.tsx index 85b399dc61229..5f6828a217679 100644 --- a/examples/app-dir-mdx/app/page.tsx +++ b/examples/app-dir-mdx/app/page.tsx @@ -1,5 +1,5 @@ import Image from 'next/image' -import { Inter } from '@next/font/google' +import { Inter } from 'next/font/google' import styles from './page.module.css' import Content from './message.mdx' diff --git a/examples/app-dir-mdx/package.json b/examples/app-dir-mdx/package.json index a3ce5484021a8..62d793b801298 100644 --- a/examples/app-dir-mdx/package.json +++ b/examples/app-dir-mdx/package.json @@ -6,7 +6,6 @@ "start": "next start" }, "dependencies": { - "@next/font": "latest", "@next/mdx": "latest", "@types/mdx": "2.0.3", "@types/node": "18.11.18", diff --git a/examples/with-sfcc/package.json b/examples/with-sfcc/package.json index b0249d3501016..e442310be00bc 100644 --- a/examples/with-sfcc/package.json +++ b/examples/with-sfcc/package.json @@ -6,7 +6,6 @@ "start": "next start" }, "dependencies": { - "@next/font": "latest", "commerce-sdk": "^2.8.0", "next": "latest", "react": "^18.2.0", diff --git a/examples/with-sfcc/pages/_app.tsx b/examples/with-sfcc/pages/_app.tsx index a0995b781aa6f..52dc7380ee600 100644 --- a/examples/with-sfcc/pages/_app.tsx +++ b/examples/with-sfcc/pages/_app.tsx @@ -1,7 +1,7 @@ import '../styles/globals.css' import Footer from '../components/Footer' import Head from 'next/head' -import { Montserrat } from '@next/font/google' +import { Montserrat } from 'next/font/google' const montserrat = Montserrat({ subsets: ['latin'],