Skip to content

Commit 562d017

Browse files
committed
.
1 parent 5fbe850 commit 562d017

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

app/(default)/(home)/landing.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import { Chen2025_value_learning } from "@/components/citation-drawer"
3737
import { publications } from "@/data/publications"
3838
import { Button } from "@/components/ui/button"
3939
import { type_mapping } from "@/data/mapping"
40-
const landings = [0,1,2,3,4,6,5].map(index => [...publications.values()].filter(publication => publication.keys.includes('home_sliding'))[index])
40+
const landings = [0,1,2,3,4,5,7,6,8].map(index => [...publications.values()].filter(publication => publication.keys.includes('home_sliding'))[index])
4141

4242

4343

app/(default)/(home)/news.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function isWithinLastNMonths(time: string, months = 3) {
2929
return pubDate >= past && pubDate <= now;
3030
}
3131
const recentPublications = publications
32-
.filter(pub => pub.time && isWithinLastNMonths(pub.time, 2))
32+
.filter(pub => pub.time && isWithinLastNMonths(pub.time, 3))
3333
.sort(
3434
(a, b) =>
3535
new Date(b.time.replace(/\./g, '-')).getTime() -

public/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
```npx tailwindcss -i ./ui2025/css/index.css -o ./ui2025/css/index_tailwind.css --watch --minify```
77

88
# General
9+
- ```git config pull.rebase false```
910

1011
### Style
1112
- ```m-``` & ```p-``` use 6 / 12 /24

0 commit comments

Comments
 (0)