fixed things

This commit is contained in:
Nomi Nonsense (Nonszy) 2025-02-18 13:04:33 +07:00
parent da61b39f4f
commit c0b5bea64f
4 changed files with 10 additions and 4 deletions

View File

@ -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

View File

@ -6,7 +6,7 @@ import Link from "next/link";
export default function Home() {
return (
<main className="flex items-center pt-16 md:pt-32 pb-12 px-8 md:px-0">
<main className="flex items-center pt-16 md:pt-24 pb-12 px-8 md:px-0">
<div className="mx-auto w-[480px]">
<header className="text-center mb-12">
<h1 className="font-bold text-xl md:text-3xl">

View File

@ -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]'
},
]

View File

@ -15,7 +15,12 @@ const config: Config = {
},
},
screens: {
'xs': '480px'
'xs': '480px',
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
'2xl': '1536px',
}
},
plugins: [],