some changes

This commit is contained in:
Nomi Nonsense (Nonszy) 2025-02-17 15:50:58 +07:00
parent a2321ae86f
commit 0406296153
6 changed files with 4 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Binary file not shown.

View File

@ -7,8 +7,8 @@ const roboto_mono = Roboto_Mono({
})
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "Nonszy Space",
description: "Nomi Nonsense Workspace Domain",
};
export default function RootLayout({

View File

@ -3,7 +3,7 @@ import Image from "next/image";
export default function Home() {
return (
<main className="flex items-center pt-32 pb-12 px-8 md:px-0">
<main className="flex items-center pt-16 md:pt-32 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

@ -5,5 +5,5 @@ import { getExpirationDate } from "@/lib/utils";
// bro has one job
export const ExpirationDate = () => {
const expirationDate = getExpirationDate();
return <span>{expirationDate}</span>
return <i>{expirationDate}</i>
}