Skip to content

Commit 94158a4

Browse files
committed
Feat: 방문객 체크 삭제
근미래에 동적 사이트로 변경하면서 구현하는게 더 나을것 같다는 생각이 듬
1 parent 66972ee commit 94158a4

File tree

1 file changed

+7
-12
lines changed

1 file changed

+7
-12
lines changed

app/(blog)/page.tsx

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
"use client";
2-
import PostCard from "@/components/post-card";
32
import { HeaderSection, PostGrid, PostItem } from "@/components/home-animation";
4-
import { usePosts } from "@/contexts/posts-context";
5-
import { useState, useEffect, useMemo, Suspense } from "react";
3+
import PostCard from "@/components/post-card";
4+
import { Badge } from "@/components/ui/badge";
65
import { Button } from "@/components/ui/button";
7-
import { motion, AnimatePresence } from "framer-motion";
6+
import { usePosts } from "@/contexts/posts-context";
87
import { Post } from "@/lib/posts";
9-
import { useSearchParams, useRouter } from "next/navigation";
10-
import { Badge } from "@/components/ui/badge";
8+
import { AnimatePresence, motion } from "framer-motion";
119
import { X } from "lucide-react";
12-
import Image from "next/image";
10+
import { useRouter, useSearchParams } from "next/navigation";
11+
import { Suspense, useEffect, useMemo, useState } from "react";
1312

1413
// 페이지당 포스트 수 정의
1514
const POSTS_PER_PAGE = 6;
@@ -216,14 +215,10 @@ function HomeContent() {
216215
description="더 게을러지기위해 더 똑똑해지기"
217216
extraContent={
218217
<div className="text-muted-foreground">
219-
<p className="mb-2">
218+
<p>
220219
세상을 게으르게 만들기 위해 발전하고 싶은 프론트엔드 개발자입니다.
221220
🚀
222221
</p>
223-
<Image
224-
src="https://myhits.vercel.app/api/hit/https%3A%2F%2Flazy-dinosaur.github.io%2F?color=green&label=Hits&size=medium"
225-
alt="Hits"
226-
/>
227222
</div>
228223
}
229224
/>

0 commit comments

Comments
 (0)