Skip to content

Commit

Permalink
project 4
Browse files Browse the repository at this point in the history
  • Loading branch information
SobennaStory committed Feb 9, 2024
1 parent 85a89b3 commit 1ce2154
Show file tree
Hide file tree
Showing 9 changed files with 40 additions and 3 deletions.
Binary file added sobenfolio-frontend/public/images/projects/4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion sobenfolio-frontend/src/app/components/Parallax.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import { useRef, useEffect, useState } from "react";
import { gsap } from "gsap";
import { ScrollTrigger } from "gsap/dist/ScrollTrigger";
import { Press_Start_2P, Pixelify_Sans } from "next/font/google";
import './ellipse.css'

const presstart = Press_Start_2P({
subsets: ['latin'],
weight: '400',
Expand Down Expand Up @@ -80,7 +82,9 @@ function Parallax() {
<img ref={backlayer} className='absolute w-[100%] z-[21] bottom-[-1000px]' src="/images/bgpics/layer-3.svg" />
<div ref={copy} className="absolute bottom-[0%] left-[50%] transform translate-x-[-50%] translate-y-[200%] z-[24] flex justify-center items-center text-center flex-col opacity-0">
<h1 className={`${presstart.className} text-[#FFFDD0] text-6xl`}>Sobenna Onwumelu</h1>
<span className={`${pixel.className} p-[1rem] rounded-[0.5rem] `}>Now Loading..</span>
<span className={`${pixel.className} p-[1rem] rounded-[0.5rem] `}>
<span className="loading">Now Loading</span>
</span>
</div>
</div>
</div>
Expand Down
22 changes: 21 additions & 1 deletion sobenfolio-frontend/src/app/components/ProjectsSection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import React, { useState, useRef } from "react";
import ProjectCard from "./ProjectCard";
import { motion, AnimatePresence } from "framer-motion";
import { WrenchIcon } from "@heroicons/react/24/solid";
import { CodeBracketIcon, EyeIcon } from '@heroicons/react/24/solid'
import { Orbitron, Press_Start_2P, Pixelify_Sans } from 'next/font/google';


Expand Down Expand Up @@ -65,6 +66,19 @@ const projectsData = [
'/images/projects/Ekreb3.png'
]
},
{
id: 4,
title: "SobStore",
description: "A inventory management app. Only frontend. Does not persist between reloads.",
image: "/images/projects/4.png",
tag: ["All", "Web"],
gitUrl: "https://sobstore.vercel.app/",
projectImages : [
'/images/projects/sobstore1.png',
'/images/projects/sobstore2.png',
'/images/projects/sobstore3.png'
]
},
];

const ProjectsSection = () => {
Expand Down Expand Up @@ -121,7 +135,7 @@ const ProjectsSection = () => {

return (
<section id='projects'>
<div className="md:grid md:grid-cols-8 items-center">
<div className="md:grid md:grid-cols-8 items-center my-12">
<motion.div
whileHover="hover"
animate={wrenchClicked ? 'click' : 'base'}
Expand All @@ -142,6 +156,12 @@ const ProjectsSection = () => {
<p className={`${orbitron.className} text-[#ADB7BE] text-center text-base sm:text-lg mb-6 lg:text-xl`}>
(Click the Wrench!)
</p>
<p className={`${orbitron.className} text-[#ADB7BE] text-center text-sm sm:text-sm mb-6 lg:text-sm`}>
<CodeBracketIcon className="inline-block w-8 h-8"/> To see code or project.
</p>
<p className={`${orbitron.className} text-[#ADB7BE] text-center text-sm sm:text-sm mb-6 lg:text-sm`}>
<EyeIcon className="inline-block w-8 h-8"/> To see fun pictures.
</p>

<motion.div
key={currentCardIndex}
Expand Down
13 changes: 13 additions & 0 deletions sobenfolio-frontend/src/app/components/ellipse.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.loading::after {
display: inline-block;
animation: dotty steps(1,end) 1s infinite;
content: '';
}

@keyframes dotty {
0% { content: ''; }
25% { content: '.'; }
50% { content: '..'; }
75% { content: '...'; }
100% { content: ''; }
}
Binary file modified sobenfolio-frontend/src/app/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion sobenfolio-frontend/src/app/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ export default function Home() {
<AchievmentsSection />
I have no achievments
*/}
<AboutSection />
<ProjectsSection />
<AboutSection />
<EmailSection />
</div>
<Footer />
Expand Down

0 comments on commit 1ce2154

Please sign in to comment.