diff options
| author | real-zephex <[email protected]> | 2024-03-15 21:28:13 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-15 21:28:13 +0530 |
| commit | 12b334d4c3889ed07cafe1f9b84ea5dba2442e2a (patch) | |
| tree | 7472616ae431f52bf9309cb066db82ff92b38471 /src | |
| parent | features: added anime and pretty much completed it. only search functionality... (diff) | |
| download | dramalama-12b334d4c3889ed07cafe1f9b84ea5dba2442e2a.tar.xz dramalama-12b334d4c3889ed07cafe1f9b84ea5dba2442e2a.zip | |
minor fixes for vercel
Diffstat (limited to 'src')
| -rw-r--r-- | src/app/page.js | 1 | ||||
| -rw-r--r-- | src/app/recent/page.js | 4 | ||||
| -rw-r--r-- | src/app/top-airing/page.js | 4 |
3 files changed, 5 insertions, 4 deletions
diff --git a/src/app/page.js b/src/app/page.js index 0ef6468..f8750b9 100644 --- a/src/app/page.js +++ b/src/app/page.js @@ -9,6 +9,7 @@ export default function Home() { src="/logo.png" width={300} height={300} + alt="Logo" > </Image> <p> diff --git a/src/app/recent/page.js b/src/app/recent/page.js index f879e58..6f4e3cd 100644 --- a/src/app/recent/page.js +++ b/src/app/recent/page.js @@ -14,8 +14,8 @@ export default async function Releases() { <div className="trending"> {data && data.results.map((item, index) => ( - <Link href={`/info/${item.id}`} style={{textDecoration: "none"}}> - <div key={index} className="trendingEntries"> + <Link key={index} href={`/info/${item.id}`} style={{textDecoration: "none"}}> + <div className="trendingEntries"> <Image src={item.image} className="{trendingImage}" diff --git a/src/app/top-airing/page.js b/src/app/top-airing/page.js index 4b660fc..e56435f 100644 --- a/src/app/top-airing/page.js +++ b/src/app/top-airing/page.js @@ -14,8 +14,8 @@ export default async function Trending() { <div className="trending"> {data && data.results.map((item, index) => ( - <Link href={`/info/${item.id}`} style={{textDecoration: "none"}}> - <div key={index} className="trendingEntries"> + <Link key={index} href={`/info/${item.id}`} style={{textDecoration: "none"}}> + <div className="trendingEntries"> <Image src={item.image} className="{trendingImage}" |