Skip to content

Commit

Permalink
Update app name (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasbicus authored Nov 15, 2024
1 parent 2d0938c commit 4d9627a
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Tilda
# Cardchain

Tilda is an loyalty card PWA.
Cardchain is an loyalty card PWA.

## Getting Started

Expand Down
2 changes: 1 addition & 1 deletion app/(homescreens)/my-cards/my-cards-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export default function MyCardsPage() {
>
{state.cards.length === 0 ? (
<MainMessage
title="Welcome to Tilda"
title="Welcome to Cardchain"
description="Looks like you haven't added any loyalty cards yet. Get started by adding your first cards! You can manually add card details or import them if you have a digital file."
>
<div className="flex justify-center justify-self-center gap-4 px-4 w-full">
Expand Down
2 changes: 1 addition & 1 deletion app/about-author/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default function Page() {
href="https://github.com/lukasbicus/tilda"
className="font-bold underline"
>
Tilda on github
Cardchain on github
</Link>
</p>
<p className="text-justify">
Expand Down
4 changes: 2 additions & 2 deletions app/about/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ export default function Page() {
height={512}
className="w-1/2 object-cover max-w-56"
/>
<h1 className="text-3xl">Tilda</h1>
<h1 className="text-3xl">Cardchain</h1>
<span className="text-xl">The loyalty card application</span>
</div>

<div className="px-4 py-6 bg-base-300">
<h2 className="text-2xl font-bold">About Tilda</h2>
<h2 className="text-2xl font-bold">About Cardchain</h2>
<p className="pt-3 pb-6">
{
"Welcome to the future of loyalty card management! Our cutting-edge application is designed to revolutionize the way you store and use your loyalty cards. With a focus on convenience, security, and versatility, we're proud to introduce an app that's not just another digital wallet - it's your personal pocket-sized companion for all your shopping needs. Here's what makes our app stand out:"
Expand Down
6 changes: 3 additions & 3 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ const geistMono = localFont({
});

export const metadata: Metadata = {
title: 'Tilda',
title: 'Cardchain',
description: 'Loyalty card app',
applicationName: 'Tilda',
applicationName: 'Cardchain',
appleWebApp: {
capable: true,
title: 'Tilda',
title: 'Cardchain',
statusBarStyle: 'black',
},
authors: [{ name: 'Lukas Bicus', url: 'https://github.com/LukasBicus' }],
Expand Down
2 changes: 1 addition & 1 deletion app/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import type { MetadataRoute } from 'next';
export default function manifest(): MetadataRoute.Manifest {
return {
name: 'The loyalty app application',
short_name: 'Tilda',
short_name: 'Cardchain',
description: 'A loyalty card app',
start_url: '/',
display: 'standalone',
Expand Down
6 changes: 3 additions & 3 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ export default function Home() {
<div className="hero-overlay bg-opacity-60"> </div>
<div className="hero-content text-neutral-content text-center">
<div className="max-w-md">
<h1 className="mb-5 text-5xl font-bold">Tilda</h1>
<h1 className="mb-5 text-5xl font-bold">Cardchain</h1>
<h2 className="mb-5 text-3xl font-bold">Manage your loyalty cards</h2>
<p className="mb-5">
Simplify your loyalty card management with Tilda, the app that puts
you in charge of your data and cards.
Simplify your loyalty card management with Cardchain, the app that
puts you in charge of your data and cards.
</p>
<div className="flex justify-center gap-4">
<Suspense
Expand Down
2 changes: 1 addition & 1 deletion app/ui/primary-header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function PrimaryHeader({
<div className="navbar-start">
<Image
src="/logo.svg"
alt="Tilda logo"
alt="Cardchain logo"
className="w-8 rounded-lg bg-white"
width={24}
height={24}
Expand Down

0 comments on commit 4d9627a

Please sign in to comment.