Skip to content

Commit 117c552

Browse files
author
guyettinger
committed
logo svg
1 parent 883d730 commit 117c552

4 files changed

Lines changed: 92 additions & 16 deletions

File tree

public/images/logo.svg

Lines changed: 75 additions & 0 deletions
Loading

src/blocks/About/About.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,14 @@ export const About = () => {
77
<div className="flex flex-row flex-nowrap items-start gap-6 max-md:flex-col">
88
<div className="flex flex-col gap-4 text-lg">
99
<p>
10-
I specialize in designing and implementing exceptional user experiences (and drinking
11-
massive amounts of coffee).
10+
I specialize in designing and implementing exceptional user experiences ... and drinking
11+
massive amounts of coffee while doing it ...
1212
</p>
1313
<p>
14-
As an engineer, I have always been passionate about creating elegant and effective
15-
solutions to complex problems. I have a strong foundation in software development, with
16-
a focus on emerging technologies. I enjoy working on both the front-end and back-end of
17-
applications, and I am always looking for ways to improve everyone experience (user and
18-
engineer alike).
14+
Emmy Award-winning full-stack software engineer with 20+ years building scalable
15+
applications and leading engineering teams. Proven track record of architecting
16+
solutions from mobile apps to complex 3D visualization systems, with expertise in
17+
TypeScript, React/Angular ecosystems, and cloud platforms.
1918
</p>
2019
</div>
2120
<div className="min-w-[30vw] max-w-[30vw] max-md:min-w-0 max-md:max-w-full">
@@ -25,6 +24,7 @@ export const About = () => {
2524
src="/images/coffeepowered.jpeg"
2625
alt="Powered by Coffee"
2726
className="rounded-lg w-full h-auto"
27+
priority={true}
2828
/>
2929
</div>
3030
</div>

src/blocks/Header/Header.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ import Image from 'next/image';
1616
import Link from 'next/link';
1717
import { useEffect, useRef, useState } from 'react';
1818

19+
type Beam = { id: number; x1: number; y1: number; x2: number; y2: number; color: string };
20+
1921
export const Header = ({ className, ...rest }: HeaderProps) => {
2022
const imgRef = useRef<HTMLImageElement | null>(null);
2123
const [rotationDeg, setRotationDeg] = useState<number>(0);
2224
const [laserMode, setLaserMode] = useState<boolean>(false);
23-
24-
type Beam = { id: number; x1: number; y1: number; x2: number; y2: number; color: string };
2525
const [beams, setBeams] = useState<Beam[]>([]);
2626
const beamIdRef = useRef(0);
2727

@@ -118,16 +118,16 @@ export const Header = ({ className, ...rest }: HeaderProps) => {
118118
<Link href="/" className="text-lg font-medium no-underline hover:underline">
119119
<Image
120120
ref={imgRef}
121-
src="/images/avatar.png"
122-
className="rounded-full"
121+
src="/images/logo.svg"
122+
className="rounded-full bg-white"
123123
style={{
124124
margin: 0,
125125
verticalAlign: 'middle',
126126
transform: `rotate(${rotationDeg}deg)`,
127127
transformOrigin: '50% 50%',
128128
}}
129-
width={80}
130-
height={80}
129+
width={48}
130+
height={48}
131131
alt="Guy Ettinger"
132132
priority={true}
133133
/>

src/blocks/Hero/Hero.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@ export const Hero = () => {
2020
>
2121
<Image
2222
src="/images/heroshot.png"
23-
width={200}
24-
height={200}
23+
width={335}
24+
height={333}
2525
alt="Guy"
26-
className="rounded-full"
26+
className="rounded-full w-[200px]"
27+
priority={true}
2728
/>
2829
</MotionDiv>
2930
<div className="flex items-center gap-3">

0 commit comments

Comments
 (0)