Skip to content

Commit 6aa97cd

Browse files
Add Shopify.com link and update copyright year to 2025 (#183)
* Add SEO backlink to shopify and update copyright year * Update app/pages/splash.tsx --------- Co-authored-by: Brooks Lybrand <brookslybrand@gmail.com>
1 parent 3e026b6 commit 6aa97cd

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
MIT License
22

33
Copyright (c) React Training LLC 2015-2021
4-
Copyright (c) Shopify Inc. 2022-2023
4+
Copyright (c) Shopify Inc. 2022-2025
55

66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

app/pages/splash.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,8 +233,10 @@ export default function Home({ loaderData }: Route.ComponentProps) {
233233
</Suspense>
234234
</section>
235235
<section className="grid h-[205px] w-full place-content-center place-items-center gap-y-6 bg-gray-50 p-12 dark:bg-black">
236-
<img src="/splash/shopify-badge.svg" className="h-[68px] w-[190px]" />
237-
<p className="text-sm text-gray-400">© 2024 Shopify, Inc.</p>
236+
<a href="https://shopify.com" target="_blank" rel="noopener noreferrer">
237+
<img src="/splash/shopify-badge.svg" alt="Developed by Shopify" className="h-[68px] w-[190px]" />
238+
</a>
239+
<p className="text-sm text-gray-400">© {new Date().getFullYear()} Shopify, Inc.</p>
238240
</section>
239241
</main>
240242
);

0 commit comments

Comments
 (0)