VSCode Icon

File

Edit

View

Go

Run

Terminal

Help

Jerry Lockard - Visual Studio Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
const HomePage = () => {
const [isLoaded, setIsLoaded] = useState(true);
const developerInfo = {
name: 'Jerry Lockard',
role: 'CEO & Founder of Lockard LLC',
bio: 'Building human-centered software across'
' web, mobile, and infra; shipping PetPass and dvoGPT.'
};
useEffect(() => {
document.title = `${developerInfo.name} | Portfolio`;
setIsLoaded(true);
}, []);
return (
<main className="hero-container">
<h1>{developerInfo.name}</h1>
<p>{developerInfo.role}</p>
<div className="cta">
<Link href="/projects">View Projects</Link>
</div>
</main>
);
};
export default HomePage;

Jerry Lockard

CEO & Founder of Lockard LLC

I build practical, human-centered tools across
web, mobile, and infra like PetPass and dvoGPT, focused on clarity, safety, and reliability.

{
}
<>
/>
()
[]
=>