Commit 7e276b2 1 parent 9159817 commit 7e276b2 Copy full SHA for 7e276b2
File tree 2 files changed +3
-7
lines changed
2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,6 @@ import { fetchReports } from "@/lib/impact-reports";
7
7
import type { Report } from "@/types" ;
8
8
import Image from "next/image" ;
9
9
10
- import hero from "@/public/hero_img.webp" ;
11
-
12
10
export default async function ReportsPage ( ) {
13
11
let uniqueReports : Report [ ] ;
14
12
let numOfContributors : number ;
@@ -33,9 +31,8 @@ export default async function ReportsPage() {
33
31
< header className = "relative overflow-hidden w-full flex flex-col justify-end max-w-screen-xl min-[2560px]:max-w-screen-2xl h-[420px] 2xl:h-[520px] min-[2560px]:h-[720px] text-vd-beige-100 rounded-3xl p-4 md:p-8 2xl:p-16" >
34
32
< Image
35
33
className = "object-cover bg-center -z-10"
36
- src = { hero }
34
+ src = { "/hero_img.webp" }
37
35
alt = "Hero Image"
38
- placeholder = "blur"
39
36
fill
40
37
priority
41
38
/>
Original file line number Diff line number Diff line change 1
1
"use client" ;
2
2
import { ArrowUpRight , Menu , Newspaper , X } from "lucide-react" ;
3
3
import Image from "next/image" ;
4
+ import Link from "next/link" ;
4
5
5
6
import { buttonVariants } from "@/components/ui/button" ;
6
7
import {
@@ -13,8 +14,6 @@ import {
13
14
} from "@/components/ui/drawer" ;
14
15
import { externalLinks } from "@/config/site" ;
15
16
import { cn } from "@/lib/utils" ;
16
- import Logo from "@/public/logo.svg" ;
17
- import Link from "next/link" ;
18
17
import { WalletProfile } from "./wallet-profile" ;
19
18
20
19
const Footer = ( ) => {
@@ -64,7 +63,7 @@ const MobileFooter = () => {
64
63
className = "h-10 w-10"
65
64
height = { 20 }
66
65
width = { 20 }
67
- src = { Logo }
66
+ src = { "/logo.svg" }
68
67
alt = "VoiceDeck Logo"
69
68
/>
70
69
</ div >
You can’t perform that action at this time.
0 commit comments