feat: complete migration to static MDX, stabilize local infrastructure and fix i18n issues
Some checks failed
🚀 Build & Deploy / 🔍 Prepare (push) Successful in 4s
🚀 Build & Deploy / 🚀 Deploy (push) Has been cancelled
🚀 Build & Deploy / 🧪 Post-Deploy Verification (push) Has been cancelled
🚀 Build & Deploy / 🏗️ Build (push) Has been cancelled
🚀 Build & Deploy / 🔔 Notify (push) Has been cancelled
🚀 Build & Deploy / 🧪 QA (push) Has been cancelled

This commit is contained in:
2026-05-04 10:26:45 +02:00
parent 41ef9092d6
commit 5fb73d57dd
43 changed files with 2304 additions and 532 deletions

View File

@@ -1,7 +1,7 @@
"use client";
import React from "react";
import { m } from "framer-motion";
import { motion } from "framer-motion";
interface RevealProps {
children: React.ReactNode;
@@ -30,7 +30,7 @@ export const Reveal = ({
};
return (
<m.div
<motion.div
initial={{
opacity: 0,
...directions[direction],
@@ -68,7 +68,7 @@ export const Reveal = ({
className={`${fullWidth ? "w-full" : ""} ${className} motion-fix will-change-[transform,opacity]`}
>
{children}
</m.div>
</motion.div>
);
};
@@ -84,7 +84,7 @@ export const Stagger = ({
staggerDelay = 0.1,
}: StaggerProps) => {
return (
<m.div
<motion.div
initial="initial"
whileInView="animate"
viewport={{ once: true, margin: "-50px" }}
@@ -98,6 +98,6 @@ export const Stagger = ({
className={className}
>
{children}
</m.div>
</motion.div>
);
};