chapter 3

This commit is contained in:
StephDietz
2023-10-26 09:14:37 -07:00
parent 7b14093d2a
commit 6cb4b9c4ab
2 changed files with 1 additions and 12 deletions

View File

@@ -1,5 +1,4 @@
import AcmeLogo from '@/app/ui/acme-logo';
import { lusitana } from '@/app/ui/fonts';
import Link from 'next/link';
export default function Page() {
return (
@@ -9,9 +8,7 @@ export default function Page() {
</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">
<p
className={`${lusitana.className} text-xl text-gray-800 md:text-3xl md:leading-normal`}
>
<p className={`text-xl text-gray-800 md:text-3xl md:leading-normal`}>
<strong>Welcome to Acme.</strong> This is the example for the{' '}
<a href="https://nextjs.org/learn/" className="text-blue-500">
Next.js Learn Course

View File

@@ -1,8 +0,0 @@
import { Inter, Lusitana } from 'next/font/google';
export const inter = Inter({ subsets: ['latin'] });
export const lusitana = Lusitana({
weight: ['400', '700'],
subsets: ['latin'],
});