File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import { Suspense } from 'react' ;
22import type { Metadata } from 'next' ;
33import CompareClient from './CompareClient' ;
4+ import { Footer } from '../components/Footer' ;
45
56export const metadata : Metadata = {
67 title : 'Compare | CommitPulse' ,
@@ -14,14 +15,19 @@ export const metadata: Metadata = {
1415
1516export default function ComparePage ( ) {
1617 return (
17- < Suspense
18- fallback = {
19- < div className = "min-h-screen flex items-center justify-center pt-28 pb-16" >
20- < div className = "w-8 h-8 rounded-full border-2 border-emerald-500 border-t-transparent animate-spin" > </ div >
21- </ div >
22- }
23- >
24- < CompareClient />
25- </ Suspense >
18+ < >
19+ < Suspense
20+ fallback = {
21+ < div className = "min-h-screen flex items-center justify-center pt-28 pb-16" >
22+ < div className = "w-8 h-8 rounded-full border-2 border-emerald-500 border-t-transparent animate-spin" > </ div >
23+ </ div >
24+ }
25+ >
26+ < CompareClient />
27+ </ Suspense >
28+ < div className = "mx-auto max-w-7xl px-6 pb-8" >
29+ < Footer />
30+ </ div >
31+ </ >
2632 ) ;
2733}
You can’t perform that action at this time.
0 commit comments