mirror of
https://github.com/theoludwig/theoludwig.git
synced 2025-05-29 22:37:44 +02:00
build(deps): update Next.js to v15 and ESLint to v9
This commit is contained in:
@ -10,7 +10,11 @@ export const AboutDescription: React.FC<AboutDescriptionProps> = () => {
|
||||
return (
|
||||
<div className="dark:text-gray my-6 max-w-md text-center text-black">
|
||||
<Typography as="p" variant="text1" className="my-6">
|
||||
{t.rich("home.about.description")}
|
||||
{t.rich("home.about.description", {
|
||||
strong: (children) => {
|
||||
return <strong>{children}</strong>
|
||||
},
|
||||
})}
|
||||
</Typography>
|
||||
|
||||
<Button href="/curriculum-vitae" variant="outline">
|
||||
|
@ -19,6 +19,12 @@ export const Interests: React.FC<InterestsProps> = () => {
|
||||
id: "code",
|
||||
title: t("home.interests.code.title"),
|
||||
description: t.rich("home.interests.code.description", {
|
||||
br: () => {
|
||||
return <br />
|
||||
},
|
||||
strong: (children) => {
|
||||
return <strong>{children}</strong>
|
||||
},
|
||||
"abbr-ux": (children) => {
|
||||
return <abbr title="User Experience">{children}</abbr>
|
||||
},
|
||||
@ -29,6 +35,12 @@ export const Interests: React.FC<InterestsProps> = () => {
|
||||
id: "open-source",
|
||||
title: t("home.interests.open-source.title"),
|
||||
description: t.rich("home.interests.open-source.description", {
|
||||
br: () => {
|
||||
return <br />
|
||||
},
|
||||
strong: (children) => {
|
||||
return <strong>{children}</strong>
|
||||
},
|
||||
"github-link": (children) => {
|
||||
return (
|
||||
<Link href={GIT_REPO_LINK} target="_blank">
|
||||
|
Reference in New Issue
Block a user