File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import AcmeLogo from '@/app/ui/acme-logo';
3
3
import { ArrowRightIcon } from '@heroicons/react/24/outline' ;
4
4
import Link from 'next/link' ;
5
5
import { lusitana } from '@/app/ui/fonts' ;
6
+ import Image from 'next/image' ;
6
7
7
8
export default function Page ( ) {
8
9
return (
@@ -31,6 +32,20 @@ export default function Page() {
31
32
</ div >
32
33
< div className = "flex items-center justify-center p-6 md:w-3/5 md:px-28 md:py-12" >
33
34
{ /* Add Hero Images Here */ }
35
+ < Image
36
+ src = "/hero-desktop.png"
37
+ width = { 1000 }
38
+ height = { 760 }
39
+ className = "hidden md:block"
40
+ alt = "Screenshots of the dashboard project showing desktop version"
41
+ />
42
+ < Image
43
+ src = "/hero-mobile.png"
44
+ width = { 560 }
45
+ height = { 620 }
46
+ className = "block md:hidden"
47
+ alt = "Screenshots of the dashboard project showing mobile version"
48
+ />
34
49
</ div >
35
50
</ div >
36
51
</ main >
You can’t perform that action at this time.
0 commit comments