Skip to content

Commit 20dc6e0

Browse files
committed
Updated Resume
1 parent ed364ba commit 20dc6e0

File tree

3 files changed

+11
-12
lines changed

3 files changed

+11
-12
lines changed

public/Ayomide’s Resume.pdf

50.2 KB
Binary file not shown.

src/Components/Header.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default function Header() {
77
<div className='text-neutral-content'>
88
<h1 className='mb-5 text-5xl font-bold'>Hi there</h1>
99
<p className='mb-5 font-medium text-lg'>{`My name is Ayomide Ibiteye (Aydot), a frontend engineer and welcome to my corner of the internet! I'm a web developer with a passion for crafting clean and efficient code, and a love for all things tech. When I'm not busy building websites and applications, you can find me tinkering with new programming languages or daydreaming about my next big project. Thanks for stopping by!`}</p>
10-
<a href={`Ayomide's CV.pdf`} download className='btn btn-primary'>CV/Resume</a>
10+
<a href={`Ayomide's Resume.pdf`} download className='btn btn-primary'>CV/Resume</a>
1111
</div>
1212
</div>
1313
)

src/Components/Waiter.tsx

+10-11
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,23 @@ export default function Waiter() {
1313
function isStarting() {
1414
setHideOther(true)
1515

16-
setTimeout(()=>{
16+
setTimeout(() => {
1717
setHideOne(false)
1818
}, 1000)
1919

20-
setTimeout(()=>{
20+
setTimeout(() => {
2121
setHideTwo(false)
2222
}, 2000)
2323

2424
setTimeout(() => {
2525
dispatch({
2626
type: 'setHasStarted',
2727
});
28-
setIsHidden(true);
28+
setIsHidden(true);
2929
}, 3000);
3030
}
3131

32-
function Circles(){
32+
function Circles() {
3333
return (
3434
<div className='flex gap-3'>
3535
<div className="bg-[#d5d5d5b9] rounded-full h-2 w-2"></div>
@@ -41,26 +41,25 @@ export default function Waiter() {
4141

4242
return (
4343
<div
44-
className={`ease-in transition-all duration-200 ${
45-
isHidden ? 'opacity-0 pointer-events-none' : ''
46-
}`}
44+
className={`ease-in transition-all duration-200 ${isHidden ? 'opacity-0 pointer-events-none' : ''
45+
}`}
4746
>
4847
<div
4948
onClick={isStarting}
5049
className="bg-primary mt-36 mx-10 md:mx-56 lg:mx-64 min-h-[100px] rounded-box cursor-pointer p-6"
5150
>
52-
<Circles />
51+
<Circles />
5352
<div className='flex items-center gap-10 mt-6'>
5453
<span className='text-[#d5d5d5b9]'>$</span>
55-
<p className='text-neutral-content font-semibold'>yarn init Aydot</p>
54+
<p className='text-neutral-content font-medium md:font-semibold'>yarn init Ayomide</p>
5655
</div>
57-
{!hideone &&
56+
{!hideone &&
5857
<div className='flex items-center gap-10 mt-6'>
5958
<span className='text-[#d5d5d5b9]'><FaCaretRight /></span>
6059
<p className='text-accent-neutral font-semibold'>installing</p>
6160
</div>
6261
}
63-
{!hidetwo &&
62+
{!hidetwo &&
6463
<div className='flex items-center gap-10 mt-6'>
6564
<span className='text-[#d5d5d5b9]'><FaCaretRight /></span>
6665
<p className='text-success font-semibold'>done!</p>

0 commit comments

Comments
 (0)