mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-16 01:01:38 +00:00
Remove comment
This commit is contained in:
@ -1,5 +1,5 @@
|
|||||||
import classNames from 'classnames';
|
import classNames from 'classnames';
|
||||||
import NextImage, { ImageProps } from 'next/future/image';
|
import NextImage, { ImageProps } from 'next/image';
|
||||||
|
|
||||||
interface Props extends ImageProps {}
|
interface Props extends ImageProps {}
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ const nextConfig = {
|
|||||||
output: 'standalone',
|
output: 'standalone',
|
||||||
images: isExport ? { unoptimized: true } : {},
|
images: isExport ? { unoptimized: true } : {},
|
||||||
experimental: {
|
experimental: {
|
||||||
runtime: 'experimental-edge',
|
// runtime: 'experimental-edge',
|
||||||
largePageDataBytes: 512 * 1000,
|
largePageDataBytes: 512 * 1000,
|
||||||
},
|
},
|
||||||
compiler: {
|
compiler: {
|
||||||
|
@ -189,26 +189,6 @@ const About: NextPageWithLayout = () => {
|
|||||||
'px-10 py-4 mx-auto lg:px-0 lg:py-10'
|
'px-10 py-4 mx-auto lg:px-0 lg:py-10'
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
{/* <div className="w-16 h-16 lg:w-[72px] lg:h-[72px]">
|
|
||||||
<Image
|
|
||||||
src={avatar}
|
|
||||||
alt="Avatar"
|
|
||||||
priority
|
|
||||||
width={72}
|
|
||||||
height={72}
|
|
||||||
className="rounded-full"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="pl-4 text-xl lg:text-2xl lg:pl-10">
|
|
||||||
<h1 className="font-semibold font-Barlow">
|
|
||||||
Arthur / Defectink / xfy
|
|
||||||
</h1>
|
|
||||||
<div className="h-[1px] rounded-lg bg-gray-400"></div>
|
|
||||||
<div className="text-base lg:text-lg">
|
|
||||||
Long may the sun shine ☀️
|
|
||||||
</div>
|
|
||||||
</div> */}
|
|
||||||
<h1 className="text-5xl font-semibold font-Barlow">About</h1>
|
<h1 className="text-5xl font-semibold font-Barlow">About</h1>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
|
@ -2,8 +2,8 @@ import cn from 'classnames';
|
|||||||
import { gltfLoader, manager } from 'lib/gltfLoader';
|
import { gltfLoader, manager } from 'lib/gltfLoader';
|
||||||
import { getMousePosition } from 'lib/utils';
|
import { getMousePosition } from 'lib/utils';
|
||||||
import dynamic from 'next/dynamic';
|
import dynamic from 'next/dynamic';
|
||||||
import Image from 'next/future/image';
|
|
||||||
import Head from 'next/head';
|
import Head from 'next/head';
|
||||||
|
import Image from 'next/image';
|
||||||
import { useCallback, useEffect, useRef, useState } from 'react';
|
import { useCallback, useEffect, useRef, useState } from 'react';
|
||||||
import { InitFn, THREE, useThree } from 'rua-three';
|
import { InitFn, THREE, useThree } from 'rua-three';
|
||||||
import styles from 'styles/index/index.module.css';
|
import styles from 'styles/index/index.module.css';
|
||||||
@ -137,7 +137,6 @@ const Home: NextPageWithLayout = () => {
|
|||||||
|
|
||||||
<main className="h-[calc(100vh-142px)] flex justify-center items-center text-xl">
|
<main className="h-[calc(100vh-142px)] flex justify-center items-center text-xl">
|
||||||
<div className="z-0 flex flex-col w-full h-full max-w-4xl px-4 py-32 text-2xl">
|
<div className="z-0 flex flex-col w-full h-full max-w-4xl px-4 py-32 text-2xl">
|
||||||
{/* <h1 className="pb-4 text-4xl">Hi there 👋, I'm Arthur. </h1> */}
|
|
||||||
<h1 className="flex pb-4 text-5xl">
|
<h1 className="flex pb-4 text-5xl">
|
||||||
<span className={cn('font-Aleo font-semibold', styles.gradient)}>
|
<span className={cn('font-Aleo font-semibold', styles.gradient)}>
|
||||||
Hi there
|
Hi there
|
||||||
@ -171,38 +170,6 @@ const Home: NextPageWithLayout = () => {
|
|||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
{/* <p>I'm a Front-end developer. Yes, that's mean</p>
|
|
||||||
<p
|
|
||||||
onMouseOver={() => setShowLang(true)}
|
|
||||||
onMouseLeave={() => setShowLang(false)}
|
|
||||||
>
|
|
||||||
<span className={cn('font-Aleo font-semibold', style.gradient)}>
|
|
||||||
I make websites{' '}
|
|
||||||
</span>
|
|
||||||
<span className="text-xs text-gray-500 dark:text-gray-400">
|
|
||||||
(and web apps)
|
|
||||||
</span>
|
|
||||||
<span className="text-sky-500 dark:text-sky-600 font-Aleo">
|
|
||||||
.{' '}
|
|
||||||
</span>
|
|
||||||
The{' '}
|
|
||||||
<span className={cn('font-Aleo', showLang && 'hidden')}>
|
|
||||||
JavaScript
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
className={cn('hidden font-Aleo', showLang && '!inline-block')}
|
|
||||||
>
|
|
||||||
TypeScript
|
|
||||||
</span>{' '}
|
|
||||||
is my favorite language.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
I'm not a creator. Just a little guy standing on the
|
|
||||||
shoulders of giants with a little imagination.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
Open source is my passion. It's making everything be great.{' '}
|
|
||||||
</p> */}
|
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
</>
|
</>
|
||||||
|
Reference in New Issue
Block a user