From c0b5bea64f624233fac50482b396da7b119d3cb7 Mon Sep 17 00:00:00 2001 From: nomi-nonsz Date: Tue, 18 Feb 2025 13:04:33 +0700 Subject: [PATCH] fixed things --- Dockerfile | 1 + src/app/page.tsx | 2 +- src/components/sosmed.tsx | 4 ++-- tailwind.config.ts | 7 ++++++- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index b0d57d3..ca79c2c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,7 @@ COPY package.json yarn.lock ./ RUN yarn install --frozen-lockfile COPY . . +COPY ./src/app/favicon.ico ./public/favicon.ico RUN yarn build diff --git a/src/app/page.tsx b/src/app/page.tsx index b6aea53..3fdb11f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,7 +6,7 @@ import Link from "next/link"; export default function Home() { return ( -
+

diff --git a/src/components/sosmed.tsx b/src/components/sosmed.tsx index 7a4a6f2..2ff6681 100644 --- a/src/components/sosmed.tsx +++ b/src/components/sosmed.tsx @@ -8,7 +8,7 @@ const sosmeds = [ name: 'x', url: 'https://x.com/_nomi_nonsz', icon: 'pajamas:twitter', - size: 'text-3xl' + size: 'text-[28px]' }, { name: 'facebook', @@ -29,7 +29,7 @@ const sosmeds = [ name: 'itch', url: 'https://nomi-nonsense.itch.io/', icon: 'cib:itch-io', - size: 'text-3xl' + size: 'text-[30px]' }, ] diff --git a/tailwind.config.ts b/tailwind.config.ts index 4c46c18..bc78c1b 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -15,7 +15,12 @@ const config: Config = { }, }, screens: { - 'xs': '480px' + 'xs': '480px', + 'sm': '640px', + 'md': '768px', + 'lg': '1024px', + 'xl': '1280px', + '2xl': '1536px', } }, plugins: [],