Skip to content

Commit

Permalink
Merge pull request #20 from sanriodev/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
sanriodev authored Aug 20, 2024
2 parents 123848f + e7373fa commit 5e9202c
Show file tree
Hide file tree
Showing 9 changed files with 42 additions and 81 deletions.
Binary file removed public/image/avatar1.jpg
Binary file not shown.
Binary file removed public/image/avatar2.jpg
Binary file not shown.
Binary file removed public/image/avatar3.jpg
Binary file not shown.
21 changes: 0 additions & 21 deletions public/image/blog-1.svg

This file was deleted.

21 changes: 0 additions & 21 deletions public/image/blog4.svg

This file was deleted.

19 changes: 0 additions & 19 deletions public/image/image-7.svg

This file was deleted.

18 changes: 18 additions & 0 deletions src/app/not-found.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import Link from 'next/link';

export default function NotFound() {
return (
<div
className='flex flex-col justify-center items-center h-screen'
style={{
backgroundImage: `url('./image/backgr.jpg')`,
backgroundSize: 'cover',
}}
>
<h1 className='text-4xl font-bold mb-8'>404 | took a wrong turn?</h1>
<Link href='/portfolio' className='text-2xl enter-button'>
go home
</Link>
</div>
);
}
36 changes: 20 additions & 16 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,26 @@ import LandingPage from './landing-page';
export default function Portfolio() {
return (
<AnimatePresence mode='wait'>
<motion.div initial="initialState" animate="animateState" exit="exitState" transition={{ duration: 0.75 }}
variants={{
initialState: {
opacity: 0,
},
animateState: {
opacity: 1,
},
exitState: {
opacity: 0,
},
}} className="base-page-size"
>
<LandingPage />
</motion.div>
<motion.div
initial='initialState'
animate='animateState'
exit='exitState'
transition={{ duration: 0.75 }}
variants={{
initialState: {
opacity: 0,
},
animateState: {
opacity: 1,
},
exitState: {
opacity: 0,
},
}}
className='base-page-size'
>
<LandingPage />
</motion.div>
</AnimatePresence>

);
}
8 changes: 4 additions & 4 deletions src/app/portfolio/projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ const PROJECTS = [
{
img: '/image/blog2.svg',
title: 'Full web application | closed source',
desc: 'Industrial web application for production order-, bucket- and storage-management, statistic evaluation and much more...',
desc: 'Industrial web application for production order-, bucket- and storage-management, statistic evaluation and much more... Developed for a paint and surface treatment company.',
visible: false,
},
{
img: '/image/blog3.svg',
title: 'Mobile App Development | closed source',
desc: 'Mobile app designed to control automated freezing rooms and refridgerators.',
desc: 'Mobile app designed to control automated freezing rooms and refridgerators... Developed for a company in the food industry.',
visible: false,
},
{
img: '/image/bingus2.svg',
title: 'Web service | open source',
desc: 'Come and meet Bingusboingus. A functional and silly discord bot for fun built with Nestjs.',
desc: 'Come and meet Bingusboingus. A functional and silly discord bot for fun built with Nestjs. Developed for friends and myself.',
visible: true,
href: 'https://github.com/BingusBoingus-Developer-Team/BingusBoingus',
},
Expand All @@ -44,7 +44,7 @@ export function Projects() {
onPointerEnterCapture={undefined}
onPointerLeaveCapture={undefined}
>
My Projects
Projects I&apos;ve worked on
</Typography>
<Typography
variant='lead'
Expand Down

0 comments on commit 5e9202c

Please sign in to comment.