From b319b6508a5b1f8db9321a227dd89f82a207aeb7 Mon Sep 17 00:00:00 2001 From: AderKonstantin Date: Sat, 1 Mar 2025 08:23:57 +0300 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(page):=20add=20animated=20link?= =?UTF-8?q?s=20to=20main=20page?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The changes in this commit add animated link components to the homepage. The key changes are: - Imported the `AnimatedLink` component from the `../components/animatedLink` file. - Replaced the regular `` tags in the main page with `` components, which apply a smooth animation effect on hover. --- app/page.tsx | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index a2ae316..1f22be8 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,4 +1,5 @@ import Image from "next/image"; +import AnimatedLink from '../components/animatedLink'; import BlogArea from "../components/blogpost"; // Mock data for blog posts @@ -24,9 +25,9 @@ export default function Home() {
@@ -44,19 +45,19 @@ export default function Home() {