@@ -3,6 +3,7 @@ import { Geist, Geist_Mono, Noto_Serif, PT_Serif } from "next/font/google";
33import "./globals.css" ;
44import { aboutMe } from "@/data/aboutme" ;
55import { customMetadata } from "@/data/title-description" ;
6+ import { ClustrMapsWidget } from "@/components/clustrmaps-widget" ;
67const geistSans = Geist ( {
78 variable : "--font-geist-sans" ,
89 subsets : [ "latin" ] ,
@@ -45,28 +46,32 @@ export default function RootLayout({
4546 >
4647 < main className = "" > { children } </ main >
4748 < footer className = "border-t border-neutral-200 dark:border-neutral-800 bg-[#FFFCF8]" >
48- < div className = "flex flex-row mx-auto max-w-7xl px-6 py-12 md:flex md:items-start md:justify-between " >
49- < div className = "mb-4 text-sm text-neutral-600 dark:text-neutral-400" >
50- < p >
51- © { new Date ( ) . getFullYear ( ) } { aboutMe . name } .
52- </ p >
53- { aboutMe . secretDescription && (
54- < p className = "text-xs text-neutral-600 dark:text-neutral-400 mt-4" >
55- { aboutMe . secretDescription }
49+ < div className = "flex flex-col mx-auto max-w-7xl px-6 py-12" >
50+ < div className = "flex flex-row md:flex md:items-start md:justify-between mb-8" >
51+ < div className = "mb-4 text-sm text-neutral-600 dark:text-neutral-400" >
52+ < p >
53+ © { new Date ( ) . getFullYear ( ) } { aboutMe . name } .
5654 </ p >
57- ) }
58- </ div >
59- < div className = "mb-4" >
60- < p className = "text-sm text-neutral-500 dark:text-neutral-500 justify" >
61- Built with{ " " }
62- < a
63- href = "https://github.com/tovacinni/research-website-template"
64- className = "underline hover:text-neutral-800 dark:hover:text-neutral-300 transition-colors"
65- >
66- research-website-template
67- </ a >
68- </ p >
55+ { aboutMe . secretDescription && (
56+ < p className = "text-xs text-neutral-600 dark:text-neutral-400 mt-4" >
57+ { aboutMe . secretDescription }
58+ </ p >
59+ ) }
60+ </ div >
61+ < div className = "mb-4" >
62+ < p className = "text-sm text-neutral-500 dark:text-neutral-500 justify" >
63+ Built with{ " " }
64+ < a
65+ href = "https://github.com/tovacinni/research-website-template"
66+ className = "underline hover:text-neutral-800 dark:hover:text-neutral-300 transition-colors"
67+ >
68+ research-website-template
69+ </ a >
70+ </ p >
71+ </ div >
6972 </ div >
73+ { /* ClustrMaps Widget */ }
74+ < ClustrMapsWidget />
7075 </ div >
7176 </ footer >
7277 </ body >
0 commit comments