Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: new turso logo #267

Merged
merged 2 commits into from
Apr 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ Clone this project and use it to create your own [Next.js](https://nextjs.org) p
</td>
<td align="center" width="33%">
<a href="https://turso.tech/?utm_source=nextjsstarterbp">
<img src="public/assets/images/turso.png?raw=true" alt="SQLite Developer Experience">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="public/assets/images/turso-white.png?raw=true">
<source media="(prefers-color-scheme: light)" srcset="public/assets/images/turso-dark.png?raw=true">
<img alt="Turso - SQLite for Production" src="public/assets/images/turso-dark.png?raw=true">
</picture>
</a>
</td>
<td align="center" width="33%">
Expand Down
Binary file added public/assets/images/turso-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/images/turso-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/assets/images/turso.png
Binary file not shown.
2 changes: 1 addition & 1 deletion src/app/[locale]/(unauth)/guestbook/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const Guestbook = () => {
<a href="https://turso.tech/?utm_source=nextjsstarterbp" target="_blank">
<Image
className="mx-auto mt-2"
src="/assets/images/turso.png"
src="/assets/images/turso-light.png"
alt="SQLite Developer Experience"
width={130}
height={112}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Sponsors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const Sponsors = () => (
target="_blank"
>
<Image
src="/assets/images/turso.png"
src="/assets/images/turso-light.png"
alt="SQLite Developer Experience"
width={260}
height={224}
Expand Down
Loading