Skip to content

Commit 52d6b8a

Browse files
committed
chore: wording changes
1 parent b87e2d8 commit 52d6b8a

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

app/components/site-footer.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const SiteFooter = () => {
22
return (
33
<footer className="flex w-full shrink-0 flex-col items-center gap-2 border-t px-4 py-6 sm:flex-row md:px-6">
44
<p className="text-xs text-gray-500 dark:text-gray-400">
5-
© 2024 Lucas Byerley. All rights reserved.
5+
© {new Date().getFullYear()} lucasb.dev | All rights reserved.
66
</p>
77
</footer>
88
)

app/root.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ export const links: LinksFunction = () => {
6969

7070
export const meta: MetaFunction<typeof loader> = ({ data }) => {
7171
return [
72-
{ title: data ? 'lucasb.dev' : 'Error | lucasb.dev' },
72+
{ title: data ? 'lucasb.dev | home' : 'Error | lucasb.dev' },
7373
{
7474
name: 'description',
75-
content: `Personal website for software engineer lucas byerley`,
75+
content: `Personal website for software engineer lucas b`,
7676
},
7777
]
7878
}
@@ -234,7 +234,7 @@ function App() {
234234
<Link to="/" className="group grid leading-snug">
235235
<LogoIcon />
236236
</Link>
237-
<span className="sr-only">Lucas Byerley</span>
237+
<span className="sr-only">Lucas B</span>
238238
</div>
239239
<SheetClose asChild>
240240
<Button className="rounded-full" size="icon" variant="ghost">

app/routes/_index.tsx

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ const HeroOne = () => {
77
<div className="flex flex-col items-center space-y-4 text-center">
88
<div className="space-y-2">
99
<h1 className="text-3xl font-bold tracking-tighter sm:text-4xl md:text-5xl lg:text-6xl/none">
10-
Lucas Byerley
10+
Lucas B
1111
</h1>
1212
<p className="mx-auto max-w-[700px] text-gray-500 dark:text-gray-400 md:text-xl">
13-
Senior Software Engineer | Sports & Web3 Enthusiast
13+
Senior Software Engineer | Sports fan & Web3 enthusiast
1414
</p>
1515
<p className="mx-auto max-w-[700px] text-gray-500 dark:text-gray-400 md:text-xl">
1616
I create clean, modern, and responsive web applications that
@@ -29,18 +29,18 @@ export const HeroTwo = () => {
2929
<div className="container grid gap-6 px-4 md:px-6 lg:grid-cols-2 lg:gap-12 xl:gap-20">
3030
<div className="flex flex-col items-start justify-center space-y-4">
3131
<h1 className="text-4xl font-bold tracking-tighter sm:text-5xl md:text-6xl lg:text-7xl">
32-
Lucas Byerley
32+
Lucas B
3333
</h1>
3434
<h2 className="text-2xl font-medium text-gray-500 dark:text-gray-400 sm:text-3xl">
35-
Senior Software Engineer | Sports & Web3 Enthusiast
35+
Senior Software Engineer | Sports Fan & Web3 Enthusiast
3636
</h2>
3737
<p className="max-w-[600px] text-gray-500 dark:text-gray-400 md:text-xl">
3838
I create clean, modern, and responsive web applications that
3939
deliver exceptional user experiences.
4040
</p>
4141
</div>
4242
<img
43-
alt="Lucas Byerley"
43+
alt="Lucas B"
4444
className="mx-auto rounded-full object-cover"
4545
height="400"
4646
src="https://avatars.githubusercontent.com/u/3066258"
@@ -193,7 +193,7 @@ const Home = () => {
193193
rel="noreferrer noopener"
194194
>
195195
<GithubIcon className="h-6 w-6" />
196-
<span>lsbyerley</span>
196+
<span>lucasb</span>
197197
</a>
198198
<a
199199
className="flex items-center gap-2"

tests/e2e/home-page.test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,4 @@ test('Test home page loads properly', async ({ page }) => {
88

99
// TODO: screenshot differs in pipeline
1010
// await expect(page).toHaveScreenshot({ fullPage: true });
11-
// await expect(page.getByText(/Lucas Byerley/i)).toBeVisible()
1211
})

0 commit comments

Comments
 (0)