Index: nextjs-dashboard/app/login/page.tsx
===================================================================
--- nextjs-dashboard/app/login/page.tsx	(revision fea0818416f42c4aebab8bae1a5a792cee4043ea)
+++ nextjs-dashboard/app/login/page.tsx	(revision e9de80cb20040e156221d2e647687591c8123290)
@@ -1,3 +1,2 @@
-import AcmeLogo from '@/app/ui/acme-logo';
 import LoginForm from '@/app/ui/login-form';
 import { Suspense } from 'react';
@@ -12,9 +11,5 @@
         <main className="flex items-center justify-center md:h-screen">
             <div className="relative mx-auto flex w-full max-w-[400px] flex-col space-y-2.5 p-4 md:-mt-32">
-                <div className="flex h-20 w-full items-end rounded-lg bg-blue-500 p-3 md:h-36">
-                    <div className="w-32 text-white md:w-36">
-                        <AcmeLogo />
-                    </div>
-                </div>
+
                 <Suspense>
                     <LoginForm />
Index: nextjs-dashboard/app/page.tsx
===================================================================
--- nextjs-dashboard/app/page.tsx	(revision fea0818416f42c4aebab8bae1a5a792cee4043ea)
+++ nextjs-dashboard/app/page.tsx	(revision e9de80cb20040e156221d2e647687591c8123290)
@@ -1,3 +1,2 @@
-import AcmeLogo from '@/app/ui/acme-logo';
 import { ArrowRightIcon } from '@heroicons/react/24/outline';
 import Link from 'next/link';
@@ -8,12 +7,6 @@
   return (
     <main className="flex min-h-screen flex-col p-6">
-      <div className="flex h-20 shrink-0 items-end rounded-lg bg-blue-500 p-4 md:h-52">
-        <AcmeLogo />
-      </div>
       <div className="mt-4 flex grow flex-col gap-4 md:flex-row">
         <div className="flex flex-col justify-center gap-6 rounded-lg bg-gray-50 px-6 py-10 md:w-2/5 md:px-20">
-          <div
-            className="relative w-0 h-0 border-l-[15px] border-r-[15px] border-b-[26px] border-l-transparent border-r-transparent border-b-black"
-          />
           <p
             className={`${firaCode.className} text-xl text-gray-800 md:text-2xl md:leading-normal antialiased`}
@@ -34,5 +27,5 @@
         <div className="flex items-center justify-center p-6 md:w-3/5 md:px-28 md:py-12">
           {/* Add Hero Images Here */}
-          <Image
+          {/* <Image
             src="/hero-desktop.png"
             width={1000}
@@ -47,5 +40,5 @@
             className="block md:hidden"
             alt="Screenshots of the dashboard project showing mobile version"
-          />
+          /> */}
         </div>
       </div>
Index: xtjs-dashboard/app/ui/acme-logo.tsx
===================================================================
--- nextjs-dashboard/app/ui/acme-logo.tsx	(revision fea0818416f42c4aebab8bae1a5a792cee4043ea)
+++ 	(revision )
@@ -1,13 +1,0 @@
-import { GlobeAltIcon } from '@heroicons/react/24/outline';
-import { lusitana } from '@/app/ui/fonts';
-
-export default function AcmeLogo() {
-  return (
-    <div
-      className={`${lusitana.className} flex flex-row items-center leading-none text-white`}
-    >
-      <GlobeAltIcon className="h-12 w-12 rotate-[15deg]" />
-      <p className="text-[44px]">Acme</p>
-    </div>
-  );
-}
Index: nextjs-dashboard/app/ui/dashboard/sidenav.tsx
===================================================================
--- nextjs-dashboard/app/ui/dashboard/sidenav.tsx	(revision fea0818416f42c4aebab8bae1a5a792cee4043ea)
+++ nextjs-dashboard/app/ui/dashboard/sidenav.tsx	(revision e9de80cb20040e156221d2e647687591c8123290)
@@ -1,5 +1,4 @@
 import Link from 'next/link';
 import NavLinks from '@/app/ui/dashboard/nav-links';
-import AcmeLogo from '@/app/ui/acme-logo';
 import { PowerIcon } from '@heroicons/react/24/outline';
 import { signOut } from '@/auth';
@@ -8,12 +7,4 @@
   return (
     <div className="flex h-full flex-col px-3 py-4 md:px-2">
-      <Link
-        className="mb-2 flex h-20 items-end justify-start rounded-md bg-blue-600 p-4 md:h-40"
-        href="/"
-      >
-        <div className="w-32 text-white md:w-40">
-          <AcmeLogo />
-        </div>
-      </Link>
       <div className="flex grow flex-row justify-between space-x-2 md:flex-col md:space-x-0 md:space-y-2">
         <NavLinks />
