Files
DefectingCat.github.io/app/page.tsx
DefectingCat bf3a916ae5 chore: format
2023-05-16 14:24:27 +08:00

34 lines
905 B
TypeScript

import clsx from 'clsx';
import Image from 'next/image';
import styles from 'styles/index/index.module.css';
import HomeModel from './home-modle';
export const metadata = {
title: 'RUA - Home',
};
export default function Page() {
return (
<main className="h-[calc(100vh-142px)] flex justify-center items-center text-xl">
<div className="max-w-4xl flex flex-col w-full h-full px-4 py-32 text-2xl">
<h1 className="flex pb-4 text-5xl">
<span className={clsx('font-Aleo font-semibold', styles.gradient)}>
Hi there
</span>
<span className="ml-3">
<Image
src="/images/img/hands.svg"
alt="hands"
width={36}
height={36}
/>
</span>
</h1>
<div className="w-full h-full">
<HomeModel />
</div>
</div>
</main>
);
}