Skip to content

Commit

Permalink
Rename service name
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshikouki committed Aug 31, 2024
1 parent f835a06 commit a8a2aa5
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
"workbench.editor.customLabels.patterns": {
"**/{index,page,actions,hooks,components,utils,types,functions}.{js,ts,jsx,tsx,mjs,mts}": "${dirname}/${filename}"
},
"cSpell.words": ["lasty"]
"cSpell.words": ["Lastio"]
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Lasty
# Lastio

Record the date of the last run and display the number of days elapsed since then.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "lasty",
"name": "lastio",
"version": "0.1.0",
"private": true,
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/app/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const Footer = () => {
return (
<footer className="mt-20 flex w-full flex-col items-center justify-center gap-4 p-4">
<div className="flex items-center gap-4 p-4">
<Link href="https://github.com/yoshikouki/Lasty">
<Link href="https://github.com/yoshikouki/Lastio">
<GitHubIcon className="size-6" />
</Link>
<Link href="https://x.com/yoshikouki_">
Expand Down
2 changes: 1 addition & 1 deletion src/app/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const Header = () => {
alt="service logo"
width={32}
/>
<h1 className="font-black text-6xl">Lasty</h1>
<h1 className="font-black text-6xl">Lastio</h1>
</AnimatedLink>
<ThemeToggle />
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/app/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { description } from "./metadata";

export default function manifest(): MetadataRoute.Manifest {
return {
name: "Lasty",
short_name: "Lasty",
name: "Lastio",
short_name: "Lastio",
description,
start_url: "/",
display: "standalone",
Expand Down
6 changes: 3 additions & 3 deletions src/app/metadata.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import type { Metadata, Viewport } from "next";

export const title = "Lasty - Awesome App";
export const description = "Lasty is an awesome app!";
export const title = "Lastio - Awesome App";
export const description = "Lastio is an awesome app!";

export const metadata: Metadata = {
metadataBase: new URL("https://Lasty.vercel.app/"),
metadataBase: new URL("https://Lastio.vercel.app/"),
title,
description,
keywords: [],
Expand Down

0 comments on commit a8a2aa5

Please sign in to comment.