diff --git a/dashboard/starter-example/app/favicon.ico b/dashboard/starter-example/app/favicon.ico deleted file mode 100644 index af98450..0000000 Binary files a/dashboard/starter-example/app/favicon.ico and /dev/null differ diff --git a/dashboard/starter-example/app/layout.tsx b/dashboard/starter-example/app/layout.tsx index 389eeda..225b603 100644 --- a/dashboard/starter-example/app/layout.tsx +++ b/dashboard/starter-example/app/layout.tsx @@ -1,15 +1,3 @@ -import '@/app/ui/global.css'; -import { inter } from '@/app/ui/fonts'; -import { Metadata } from 'next'; - -export const metadata: Metadata = { - title: { - template: '%s | Acme Dashboard', - default: 'Acme Dashboard', - }, - description: 'The official Next.js Learn Dashboard built with App Router.', - metadataBase: new URL('https://next-learn-dashboard.vercel.sh'), -}; export default function RootLayout({ children, }: { @@ -17,7 +5,7 @@ export default function RootLayout({ }) { return ( -
{children} + {children} ); } diff --git a/dashboard/starter-example/app/opengraph-image.png b/dashboard/starter-example/app/opengraph-image.png deleted file mode 100644 index 569707e..0000000 Binary files a/dashboard/starter-example/app/opengraph-image.png and /dev/null differ diff --git a/dashboard/starter-example/app/page.tsx b/dashboard/starter-example/app/page.tsx index cbbd328..0a66ab3 100644 --- a/dashboard/starter-example/app/page.tsx +++ b/dashboard/starter-example/app/page.tsx @@ -1,13 +1,11 @@ import AcmeLogo from '@/app/ui/acme-logo'; -import { ArrowRightIcon } from '@heroicons/react/24/outline'; import { lusitana } from '@/app/ui/fonts'; -import Image from 'next/image'; import Link from 'next/link'; export default function Page() { return (