@@ -7,6 +7,7 @@ import { Select } from '@/components/ui/Select'
77import { Loader } from '@/components/ui/Spinner'
88import { CenteredCard } from '@/components/ui/CenteredCard'
99import { Button } from '@/components/ui/Button'
10+ import { Footer } from '@/components/ui/Footer'
1011import { useUserProgress } from '@/contexts/UserProgressContext'
1112import { StatsResponse , EvaluationTimeseriesPoint , CountryCoverage } from '@/types'
1213
@@ -329,8 +330,8 @@ export default function StatsPage() {
329330 }
330331
331332 return (
332- < main className = "bg-gray-50 min-h-0 overflow-y-auto" >
333- < div className = "max-w-6xl mx-auto px-6 py -12" >
333+ < main className = "bg-gray-50 min-h-0 overflow-y-auto flex flex-col " >
334+ < div className = "flex-1 max-w-6xl mx-auto px-6 pt -12 w-full " >
334335 < div className = "mb-8" >
335336 < h1 className = "text-3xl font-bold text-gray-900 mb-4" > Community Stats</ h1 >
336337 < p className = "text-lg text-gray-600" >
@@ -369,30 +370,9 @@ export default function StatsPage() {
369370 </ HeaderedBox >
370371 </ div >
371372 ) }
372-
373- < div className = "flex justify-center gap-3 pt-8 pb-4" >
374- < Button href = "https://www.opensanctions.org/impressum/" variant = "secondary" size = "small" >
375- Impressum
376- </ Button >
377- { process . env . NEXT_PUBLIC_WIKIDATA_CONTRIBUTIONS_URL && (
378- < Button
379- href = { process . env . NEXT_PUBLIC_WIKIDATA_CONTRIBUTIONS_URL }
380- variant = "secondary"
381- size = "small"
382- >
383- View Wikidata contributions
384- < svg className = "w-4 h-4 ml-1 stroke-indigo-600" fill = "none" viewBox = "0 0 24 24" >
385- < path
386- strokeLinecap = "round"
387- strokeLinejoin = "round"
388- strokeWidth = { 2 }
389- d = "M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"
390- />
391- </ svg >
392- </ Button >
393- ) }
394- </ div >
395373 </ div >
374+
375+ < Footer />
396376 </ main >
397377 )
398378}
0 commit comments