diff --git a/next.config.js b/next.config.js index c54a846..9b8c744 100644 --- a/next.config.js +++ b/next.config.js @@ -8,6 +8,9 @@ const nextConfig = { }, typescript: { ignoreBuildErrors: true + }, + images: { + unoptimized: true } } diff --git a/pages/index.tsx b/pages/index.tsx index 6a09a39..33ed4a6 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -1,10 +1,10 @@ import Job, { type JobProps } from '../components/Job' import Skill, { type SkillProps } from '../components/Skill' import ListItem, { type ListItemProps } from '../components/ListItem' -import Head from 'next/head' import { UsefulLinksList } from '../components/UsefulLinks/index' import { SocialLinksList } from '../components/SocialLinks/SocialLinks' import type { GetStaticProps } from 'next' +import Image from 'next/image' interface LandingProps { jobs: JobsType[] @@ -12,10 +12,10 @@ interface LandingProps { projects: ProjectsType[] } -export default function Landing({ jobs, skills, projects }: LandingProps) { +export default function Landing({ jobs, skills, projects }: LandingProps): React.JSX.Element { return (
- peng + {'peng'}

❗👷 This site is under construction 🚧 🏗️ 🚧

@@ -25,7 +25,7 @@ export default function Landing({ jobs, skills, projects }: LandingProps) {
-

Triston Armstrong 🫰