mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-15 03:41:36 +00:00
chapter 3
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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'],
|
||||
});
|
||||
Reference in New Issue
Block a user