mirror of
https://github.com/michivonah/nextjs.git
synced 2025-12-22 22:16:28 +01:00
create/import dashboard app project from course template
This commit is contained in:
parent
820ed27a47
commit
6d6dd37f72
47 changed files with 7370 additions and 0 deletions
13
dashboard-app-course/app/ui/acme-logo.tsx
Normal file
13
dashboard-app-course/app/ui/acme-logo.tsx
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
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>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue