Skip to content

Commit

Permalink
remove surname
Browse files Browse the repository at this point in the history
  • Loading branch information
loke-dev committed Mar 25, 2024
1 parent 770525a commit 4e573b9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 Loke Carlsson.
Copyright (c) 2023 Loke.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/Footer.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<footer class="flex flex-col justify-center items-center p-8 sm:px-0 bg-background">
<p>
All rights reserved © Loke Carlsson {new Date().getFullYear()}
All rights reserved © Loke {new Date().getFullYear()}
</p>
</footer>
2 changes: 1 addition & 1 deletion src/lib/styles/syntax.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Demo: https://marc.dev/demo/prism-synthwave84
*
* Ported for PrismJS by Marc Backes [@themarcba]
* Edited by Loke Carlsson to fit my theme a bit better.
* Edited by Loke to fit my theme a bit better.
*/

code[class*="language-"],
Expand Down
2 changes: 1 addition & 1 deletion src/routes/about/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div>
<h2 class="text-base text-primary font-semibold tracking-wide uppercase">About</h2>
<h3 class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-100 sm:text-4xl">
Loke Carlsson
Loke
</h3>
</div>
</div>
Expand Down
4 changes: 1 addition & 3 deletions tests/component/footer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ describe("Footer", () => {
it("Correct copy and year", async () => {
const { getByText } = render(Footer)

expect(
getByText(`All rights reserved © Loke Carlsson ${new Date().getFullYear()}`)
).toBeDefined()
expect(getByText(`All rights reserved © Loke ${new Date().getFullYear()}`)).toBeDefined()
})
})

0 comments on commit 4e573b9

Please sign in to comment.