ref: fetch api function

This commit is contained in:
Dipanshu Rawat
2025-06-24 02:06:55 +05:30
parent fb9c560c5b
commit 57e42e2c45
3 changed files with 61 additions and 24 deletions

View File

@ -6,12 +6,27 @@ import { Button } from "./ui/button";
import { ArrowRight } from "lucide-react";
import { HeaderBase } from "./header-base";
import { useSession } from "@/lib/auth-client";
import { ghStars } from "@/lib/fetchGhStars";
import { getStars } from "@/lib/fetchGhStars";
import { Star } from "lucide-react";
import { useEffect, useState } from "react";
export function Header() {
const stars = ghStars();
const { data: session } = useSession();
const [star, setStar] = useState<string>("");
useEffect(() => {
const fetchStars = async () => {
try {
const data = await getStars();
setStar(data);
} catch (err) {
console.error("Failed to fetch GitHub stars", err);
}
};
fetchStars();
}, []);
const leftContent = (
<Link href="/" className="flex items-center gap-3">
<Image src="/logo.png" alt="OpenCut Logo" width={24} height={24} />
@ -28,7 +43,7 @@ export function Header() {
>
<span className="hidden sm:inline">GitHub</span>
<span className="text-foreground flex items-center">
{stars}+
{star}+
<Star className="w-4 h-4 ml-1" />
</span>
</Button>