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 (
- + {/* */}
@@ -24,25 +22,11 @@ export default function Page() { href="/login" className="flex items-center gap-5 self-start rounded-lg bg-blue-500 px-6 py-3 text-sm font-medium text-white transition-colors hover:bg-blue-400 md:text-base" > - Log in + Log in
{/* Add Hero Images Here */} - Screenshots of the dashboard project showing desktop and mobile versions - Screenshot of the dashboard project showing mobile version
diff --git a/dashboard/starter-example/middleware.ts b/dashboard/starter-example/middleware.ts deleted file mode 100644 index 187e1c6..0000000 --- a/dashboard/starter-example/middleware.ts +++ /dev/null @@ -1,9 +0,0 @@ -import NextAuth from 'next-auth'; -import { authConfig } from './auth.config'; - -export default NextAuth(authConfig).auth; - -export const config = { - // https://nextjs.org/docs/app/building-your-application/routing/middleware#matcher - matcher: ['/((?!api|_next/static|_next/image|.png).*)'], -};