File tree 5 files changed +16
-7
lines changed
5 files changed +16
-7
lines changed Original file line number Diff line number Diff line change
1
+ # 4.0.2
2
+
3
+ ## fixes
4
+
5
+ - _ uses page:_ adds page animation back
6
+
1
7
# 4.0.1
2
8
3
9
## fixes
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " portfolio" ,
3
3
"description" : " A redesign of my portfolio website." ,
4
- "version" : " 4.0.1 " ,
4
+ "version" : " 4.0.2 " ,
5
5
"author" : {
6
6
"name" : " Jacob Herper" ,
7
7
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { ErrorFallback } from '@components/templates/ErrorFallback';
7
7
8
8
import { sanityClient } from '@lib/sanity' ;
9
9
10
- import { caseStudiesQuery } from '@root/src/ queries/caseStudies' ;
10
+ import { caseStudiesQuery } from '@queries/caseStudies' ;
11
11
import { CaseStudy } from '@types' ;
12
12
import { groq } from 'next-sanity' ;
13
13
import Image from 'next/image' ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { CaseStudy } from '@components/molecules/CaseStudy';
4
4
5
5
import { sanityClient } from '@lib/sanity' ;
6
6
7
- import { caseStudiesQuery } from '@root/src/ queries/caseStudies' ;
7
+ import { caseStudiesQuery } from '@queries/caseStudies' ;
8
8
import { CaseStudy as CaseStudyType } from '@types' ;
9
9
10
10
export const metadata = {
Original file line number Diff line number Diff line change
1
+ import { AnimatePage } from '@components/atoms/AnimatePage' ;
1
2
import { Container } from '@components/atoms/Container' ;
2
3
import { ContentBlock } from '@components/atoms/ContentBlock' ;
3
4
@@ -22,10 +23,12 @@ const UsesPage = async () => {
22
23
const page = await getData ( ) ;
23
24
24
25
return (
25
- < Container >
26
- < h1 className = "headline text-3xl md:text-5xl lg:text-6xl mt-8" > Uses</ h1 >
27
- < ContentBlock value = { page . body } />
28
- </ Container >
26
+ < AnimatePage >
27
+ < Container >
28
+ < h1 className = "headline text-3xl md:text-5xl lg:text-6xl mt-8" > Uses</ h1 >
29
+ < ContentBlock value = { page . body } />
30
+ </ Container >
31
+ </ AnimatePage >
29
32
) ;
30
33
} ;
31
34
You can’t perform that action at this time.
0 commit comments