Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
www
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PLN
www
Commits
bae14ce0
Commit
bae14ce0
authored
Apr 11, 2025
by
PLN (Algolia)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: use codemod new-link
parent
5da1640d
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
24 additions
and
24 deletions
+24
-24
layout.js
next/components/layout.js
+13
-13
hydra.js
next/pages/hydra.js
+1
-1
index.js
next/pages/index.js
+5
-5
poesie.js
next/pages/poesie.js
+1
-1
starry-nights.js
next/pages/starry-nights.js
+3
-3
talks.js
next/pages/talks.js
+1
-1
No files found.
next/components/layout.js
View file @
bae14ce0
...
...
@@ -48,20 +48,20 @@ export default function Layout({ children, home }) {
)
:
(
<>
<
Link
href
=
"/"
>
<
a
>
<
Image
priority
src
=
"/images/profile.png"
className
=
{
utilStyles
.
borderCircle
}
height
=
{
108
}
width
=
{
108
}
alt
=
{
name
}
/
>
<
/a
>
<
Image
priority
src
=
"/images/profile.png"
className
=
{
utilStyles
.
borderCircle
}
height
=
{
108
}
width
=
{
108
}
alt
=
{
name
}
/
>
<
/Link
>
<
h2
className
=
{
utilStyles
.
headingLg
}
>
<
Link
href
=
"/"
>
<
a
className
=
{
utilStyles
.
colorInherit
}
>
{
name
}
<
/a
>
<
Link
href
=
"/"
className
=
{
utilStyles
.
colorInherit
}
>
{
name
}
<
/Link
>
<
/h2
>
<
/
>
...
...
@@ -71,7 +71,7 @@ export default function Layout({ children, home }) {
{
!
home
&&
(
<
div
className
=
{
styles
.
backToHome
}
>
<
Link
href
=
"/"
>
<
a
>
←
Back
to
home
<
/a
>
←
Back
to
home
<
/Link
>
<
/div
>
)}
...
...
next/pages/hydra.js
View file @
bae14ce0
...
...
@@ -69,7 +69,7 @@ export default function Hydra({ hydras }) {
<ul className={utilStyles.list}>
{hydras.map(({ id, title }) => (
<li className={utilStyles.listItem} key={id}>
<Link href={`/hydra/${id}`}>
<Link href={`/hydra/${id}`}
legacyBehavior
>
<h4> {title}</h4>
</Link>
</li>
...
...
next/pages/index.js
View file @
bae14ce0
...
...
@@ -43,7 +43,7 @@ export default function Home({ posts, talks }) {
</p>
</section>
<section className={`${utilStyles.headingMd} ${utilStyles.padding1px}`}>
<Link href="
/
parvagues
/
" className={utilStyles.sectionLink}>
<Link href="
/
parvagues
/
" className={utilStyles.sectionLink}
legacyBehavior
>
…code into <em>music</em>
</Link>
<p className="
description
">
...
...
@@ -52,7 +52,7 @@ export default function Home({ posts, talks }) {
</p>
</section>
<section className={`${utilStyles.headingMd} ${utilStyles.padding1px}`}>
<Link href="
/
hydra
/
" className={utilStyles.sectionLink}>
<Link href="
/
hydra
/
" className={utilStyles.sectionLink}
legacyBehavior
>
…code into <em>animated pixelscapes</em>
</Link>
<p className="
description
">
...
...
@@ -61,7 +61,7 @@ export default function Home({ posts, talks }) {
</p>
</section>
<section className={`${utilStyles.headingMd} ${utilStyles.padding1px}`}>
<Link href="
/
poesie
/
" className={utilStyles.sectionLink}>
<Link href="
/
poesie
/
" className={utilStyles.sectionLink}
legacyBehavior
>
…words into <em>thoughts</em>
</Link>
<p className="
description
">
...
...
@@ -69,7 +69,7 @@ export default function Home({ posts, talks }) {
</p>
</section>
<section className={`${utilStyles.headingMd} ${utilStyles.padding1px}`}>
<Link href="
/
talks
/
" className={utilStyles.sectionLink}>
<Link href="
/
talks
/
" className={utilStyles.sectionLink}
legacyBehavior
>
…ideas into <em>talks</em>
</Link>
<p className="
description
">
...
...
@@ -82,7 +82,7 @@ export default function Home({ posts, talks }) {
<ul className={utilStyles.list}>
{talks.map(({ id, title, description }) => (
<li className={utilStyles.listItem} key={id}>
<Link href={`/talks#${id}`} className={utilStyles.listItemLink}>
<Link href={`/talks#${id}`} className={utilStyles.listItemLink}
legacyBehavior
>
{title}
</Link>
{description && (
...
...
next/pages/poesie.js
View file @
bae14ce0
...
...
@@ -87,7 +87,7 @@ export default function Poems({ poems }) {
<
ul
className
=
{
utilStyles
.
list
}
>
{
sortedPoems
.
map
(({
id
,
title
,
date
,
language
,
tags
})
=>
(
<
li
className
=
{
utilStyles
.
listItem
}
key
=
{
id
}
>
<
Link
href
=
{
`/poesie/
${
id
}
`
}
className
=
{
utilStyles
.
listItemLink
}
>
<
Link
href
=
{
`/poesie/
${
id
}
`
}
className
=
{
utilStyles
.
listItemLink
}
legacyBehavior
>
{
title
}
<
/Link
>
<
small
className
=
{
utilStyles
.
lightText
}
>
...
...
next/pages/starry-nights.js
View file @
bae14ce0
...
...
@@ -39,7 +39,7 @@ export default function NuitsEtoilees() {
<
br
/>
<
br
/>
<
ul
className
=
{
utilStyles
.
list
}
>
<
Link
href
=
"https://nech.pl/halley"
>
<
Link
href
=
"https://nech.pl/halley"
legacyBehavior
>
<
li
>
<
h3
>
<
a
href
=
"https://nech.pl/halley"
>
⮞
Dusty
Halley
<
/a
>
...
...
@@ -64,7 +64,7 @@ export default function NuitsEtoilees() {
<
/p
>
<
/li
>
<
/Link
>
<
Link
href
=
"https://nech.pl/edge"
>
<
Link
href
=
"https://nech.pl/edge"
legacyBehavior
>
<
li
>
<
h3
>
<
a
href
=
"https://nech.pl/edge"
>
⮞
Edge
of
Destruction
<
/a
>
...
...
@@ -90,7 +90,7 @@ export default function NuitsEtoilees() {
<
/p
>
<
/li
>
<
/Link
>
<
Link
href
=
"https://nech.pl/ariane13"
>
<
Link
href
=
"https://nech.pl/ariane13"
legacyBehavior
>
<
li
>
<
h3
>
<
a
href
=
"https://nech.pl/ariane13"
>
⮞
Ariane13
<
/a
>
...
...
next/pages/talks.js
View file @
bae14ce0
...
...
@@ -54,7 +54,7 @@ export default function Talks({ talks, selection }) {
slides
,
event
,
})
=>
(
<
Link
href
=
{
`/talks#
${
id
}
`
}
key
=
{
id
}
>
<
Link
href
=
{
`/talks#
${
id
}
`
}
key
=
{
id
}
legacyBehavior
>
<
li
className
=
{
utilStyles
.
listItem
}
>
<
h3
id
=
{
id
}
>
{
title
}
<
/h3
>
{
description
&&
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment