File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import Image from "next/image";
44import { useEffect , useState } from 'react' ;
55import { useRouter } from 'next/navigation' ;
66import { LoaderIcon } from "lucide-react" ;
7+ import { appConfig } from "@/configs/app" ;
78
89const menuItems = [
910 {
@@ -105,7 +106,7 @@ export default function HomePage() {
105106 < Image src = "/cambodia-flag-icon-128.png" alt = "Avatar" width = { 120 } height = { 120 } className = "absolute ring-2 bottom-1 -right-2 ring-amber-200 rounded w-9 hover:scale-110 transition-all duration-300 h-6 object-cover" />
106107 </ div >
107108 < div className = "max-sm:flex-col max-sm:mt-5 mt-9 items-center flex-col flex mx-auto justify-center gap-0" >
108- < h1 className = "font-bold font-sans text-xl" > Sophat LEAT </ h1 >
109+ < h1 className = "font-bold font-sans text-xl" > { appConfig . name } </ h1 >
109110 </ div >
110111
111112 < div className = "flex w-full max-w-60 mx-auto justify-center max-sm:gap-2 gap-2 shadow-2xl" >
Original file line number Diff line number Diff line change 1+ export const appConfig = {
2+ name : "Sophat LEAT" ,
3+ description : "Personal portfolio and blog of Sophat LEAT" ,
4+ url : "https://pphat.stackdev.cloud" ,
5+ links : {
6+ twitter : "https://twitter.com/stackdevcloud" ,
7+ github : "https://github.com/stackdevcloud" ,
8+ } ,
9+ }
You can’t perform that action at this time.
0 commit comments