full upgrade to dev

This commit is contained in:
2026-01-08 11:31:57 +01:00
parent 4bf94007cc
commit 7320a0562d
17 changed files with 629 additions and 442 deletions

View File

@@ -2,13 +2,7 @@
import { useState, useEffect } from "react";
import { motion, Variants } from "framer-motion";
import {
ExternalLink,
Github,
Calendar,
Layers,
ArrowRight,
} from "lucide-react";
import { ExternalLink, Github, Layers, ArrowRight } from "lucide-react";
import Link from "next/link";
import Image from "next/image";
@@ -65,7 +59,7 @@ const Projects = () => {
setProjects(data.projects || []);
}
} catch (error) {
if (process.env.NODE_ENV === 'development') {
if (process.env.NODE_ENV === "development") {
console.error("Error loading projects:", error);
}
}
@@ -104,7 +98,7 @@ const Projects = () => {
variants={staggerContainer}
className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"
>
{projects.map((project, index) => (
{projects.map((project) => (
<motion.div
key={project.id}
variants={fadeInUp}