diff --git a/app/api/downloads/route.ts b/app/api/downloads/route.ts index 7557a71..f3f80b5 100644 --- a/app/api/downloads/route.ts +++ b/app/api/downloads/route.ts @@ -7,6 +7,7 @@ export async function GET(req: NextRequest) { const client = await clientPromise; const db = client.db("downloadsDatabase"); const downloads = await db.collection("downloads").find().toArray(); + // console.log("Downloads fetched:", downloads); return NextResponse.json(downloads, { status: 200 }); } catch (error) { console.log(`Error Messge ${error}`); diff --git a/components/shared/Footer.tsx b/components/shared/Footer.tsx index 0b4d868..9ed0c81 100644 --- a/components/shared/Footer.tsx +++ b/components/shared/Footer.tsx @@ -9,7 +9,7 @@ const Footer = () => { <>