Skip to content

Commit

Permalink
Merge pull request #8 from Nurrohmann/feat/deployment
Browse files Browse the repository at this point in the history
fix: title icon & responsive design above dekstop
  • Loading branch information
Nuuriii authored Jan 8, 2024
2 parents 1c41f7f + 9b2d25c commit 80b8c0b
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/app/container/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ export default function PokemonList({ propsName }: any) {
};

return (
<div className="bg-white dark:bg-neutral-800 w-full px-[1rem] py-[2rem] rounded-[1rem]">
<div>
<div className="bg-white min-[1444px]:flex min-[1444px]:justify-center dark:bg-neutral-800 w-full px-[1rem] py-[2rem] rounded-[1rem]">
<div className="min-[1444px]:w-[90rem]">
{searchResult.length > 0 ? (
<div className="flex flex-wrap gap-4 justify-center">
{searchResult.map((pokemon: any, index) => (
Expand Down
Binary file modified src/app/favicon.ico
Binary file not shown.
Binary file removed src/app/icon.png
Binary file not shown.
4 changes: 1 addition & 3 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import type { Metadata, Viewport } from 'next';
import { Poppins } from 'next/font/google';
import Head from 'next/head';
import './globals.css';

const poppins = Poppins({
Expand Down Expand Up @@ -31,9 +32,6 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<head>
<link rel="icon" href="./icon.png" sizes="any" />
</head>
<body className={poppins.className}>{children}</body>
</html>
);
Expand Down

0 comments on commit 80b8c0b

Please sign in to comment.