11import AcmeLogo from '@/app/ui/acme-logo' ;
22import { ArrowRightIcon } from '@heroicons/react/24/outline' ;
33import Link from 'next/link' ;
4+ import { lusitana } from '@/app/ui/fonts' ;
5+ import Image from 'next/image' ;
6+
47
58export default function Page ( ) {
69 return (
710 < main className = "flex min-h-screen flex-col p-6" >
811 < div className = "flex h-20 shrink-0 items-end rounded-lg bg-blue-500 p-4 md:h-52" >
9- { /* <AcmeLogo /> */ }
12+ < AcmeLogo />
1013 </ div >
1114 < div className = "mt-4 flex grow flex-col gap-4 md:flex-row" >
1215 < 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" >
13- < p className = { `text-xl text-gray-800 md:text-3xl md:leading-normal` } >
16+ < 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" />
17+ < p className = { `${ lusitana . className } text-xl text-gray-800 md:text-3xl md:leading-normal` } >
1418 < strong > Welcome to Acme.</ strong > This is the example for the{ ' ' }
1519 < a href = "https://nextjs.org/learn/" className = "text-blue-500" >
1620 Next.js Learn Course
@@ -26,6 +30,20 @@ export default function Page() {
2630 </ div >
2731 < div className = "flex items-center justify-center p-6 md:w-3/5 md:px-28 md:py-12" >
2832 { /* Add Hero Images Here */ }
33+ < Image
34+ src = "/hero-desktop.png"
35+ width = { 1000 }
36+ height = { 760 }
37+ className = "hidden md:block"
38+ alt = "Screenshots of the dashboard project showing desktop version"
39+ />
40+ < Image
41+ src = "/hero-mobile.png"
42+ width = { 500 }
43+ height = { 620 }
44+ className = "block md:hidden"
45+ alt = "Screenshots of the dashboard project showing mobile version"
46+ />
2947 </ div >
3048 </ div >
3149 </ main >
0 commit comments