mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-28 23:24:18 +00:00
* Update next to canary * Update layout.tsx * Use canary * Remove serverActions flag warning * Use unstable_noStore * Add Date.now() test * Update metadataBase url * Create wrapper component for Cards * Update page.tsx * Misc * Delete unused data fetch * Add noStore to /invoices and /customers functions * Remove date.now() * Use canary * Rename component * Fix imports * Update types for useFormStatus and useFormState * Rename folder, add team members * fixed images and added login button pending state * Update dashboard/final-example/app/lib/data.ts Co-authored-by: Matt Kane <m@mk.gg> --------- Co-authored-by: Steven Tey <stevensteel97@gmail.com> Co-authored-by: Matt Kane <m@mk.gg>
14 lines
381 B
TypeScript
14 lines
381 B
TypeScript
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>
|
|
);
|
|
}
|