File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import { SearchIcon } from "@/components/icons/search";
33import { VisualStudioCodeIcon } from "@/components/icons/vscode" ;
44import { WindowsIcon } from "@/components/icons/windows" ;
55import { cn } from "@/lib/utils" ;
6+ import Image from "next/image" ;
67
78const menuItems = [
89 {
@@ -34,8 +35,9 @@ const menuItems = [
3435
3536export default function HomePage ( ) {
3637 return (
37- < main className = "min-h-screen relative bg-amber-50" >
38- < footer className = "fixed bottom-0 inset-x-0 border-t backdrop-blur-sm border-black/5 bg-white/50" >
38+ < main className = "min-h-screen relative bg-linear-to-b from-amber-50 to-amber-100 text-center" >
39+ < Image src = "/angkor-wat-cambodia.jpg" alt = "Background" fill className = "absolute pointer-events-none inset-0 object-cover" />
40+ < footer className = "fixed bottom-0 inset-x-0 border-t backdrop-blur-sm border-black/5 bg-white/90" >
3941 < ul className = "flex w-full max-w-3xl mx-auto justify-center py-1.5 gap-1" >
4042 { menuItems . map ( ( item ) => (
4143 < li key = { item . name } >
Original file line number Diff line number Diff line change @@ -53,7 +53,6 @@ export default function HomePage() {
5353 return 'Good Evening' ;
5454 }
5555
56-
5756 useEffect ( ( ) => {
5857 const timer = setInterval ( ( ) => {
5958 setCurrentTime ( new Date ( ) ) ;
@@ -91,7 +90,7 @@ export default function HomePage() {
9190
9291 return (
9392 < main className = "min-h-screen font-sans relative bg-linear-to-b from-amber-50 to-amber-100 text-center" >
94- < Image src = "/angkor-wat-cambodia.jpg" alt = "Background" fill className = "absolute pointer-events-none opacity-7 inset-0 object-cover" />
93+ < Image src = "/angkor-wat-cambodia.jpg" alt = "Background" fill className = "absolute pointer-events-none opacity-5 inset-0 object-cover" />
9594 < div className = "flex flex-col gap-3 items-center justify-center min-h-screen" >
9695
9796 < div className = "flex justify-center max-sm:mt-10 flex-col mb-5" >
You can’t perform that action at this time.
0 commit comments