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/icons #41

Merged
merged 2 commits into from
Jun 29, 2023
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
Binary file modified .yarn/install-state.gz
Binary file not shown.
Empty file added .yarn/versions/538477b6.yml
Empty file.
17 changes: 13 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
## 1.0.0 (2023-06-28)
## 1.1.0 (2023-06-29)

* feat: improve logo icons ([6ac2bf9](https://github.com/Rykus0/cryptoquote/commit/6ac2bf9))
* build: add script to update changelog when versioning ([d897fdf](https://github.com/Rykus0/cryptoquote/commit/d897fdf))
* build: generate initial changelog ([d420dfa](https://github.com/Rykus0/cryptoquote/commit/d420dfa))
* build: install commitlint and husky ([f768cb8](https://github.com/Rykus0/cryptoquote/commit/f768cb8))
* build: install conventional changelog cli ([f586f2d](https://github.com/Rykus0/cryptoquote/commit/f586f2d))



## 1.0.0 (2023-06-27)

* build: add yarn version plugin ([dd2e466](https://github.com/Rykus0/cryptoquote/commit/dd2e466))
* build: install commitlint and husky ([a69716c](https://github.com/Rykus0/cryptoquote/commit/a69716c))
* build: specify yarn as package manager ([a8e839d](https://github.com/Rykus0/cryptoquote/commit/a8e839d))
* chore: add license ([7aaa059](https://github.com/Rykus0/cryptoquote/commit/7aaa059))
* chore: bump to v1.0.0 ([3a89f88](https://github.com/Rykus0/cryptoquote/commit/3a89f88))
* chore: dependencies to dev deps ([ed0347f](https://github.com/Rykus0/cryptoquote/commit/ed0347f))
Expand All @@ -14,6 +21,8 @@
* chore: update todo comments ([5d2c09c](https://github.com/Rykus0/cryptoquote/commit/5d2c09c))
* chore: update todo comments ([e59a01f](https://github.com/Rykus0/cryptoquote/commit/e59a01f))
* chore: update yarn ([c664af9](https://github.com/Rykus0/cryptoquote/commit/c664af9))
* build: add yarn version plugin ([dd2e466](https://github.com/Rykus0/cryptoquote/commit/dd2e466))
* build: specify yarn as package manager ([a8e839d](https://github.com/Rykus0/cryptoquote/commit/a8e839d))
* refactor: address lint issues in confetti ([63e635f](https://github.com/Rykus0/cryptoquote/commit/63e635f))
* refactor: allow configurable spread for confetti ([08507f8](https://github.com/Rykus0/cryptoquote/commit/08507f8))
* refactor: break out and refactor confetti component ([66d0fee](https://github.com/Rykus0/cryptoquote/commit/66d0fee))
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
{
"name": "cryptoquote",
"version": "1.0.0",
"version": "1.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"version": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s && git add CHANGELOG.md"
"version": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s && git add CHANGELOG.md",
"changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"dependencies": {
"next": "13.4.4",
Expand Down
24 changes: 24 additions & 0 deletions public/cryptoquotle.svg
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 src/app/apple-icon.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 src/app/favicon.ico
Binary file not shown.
24 changes: 24 additions & 0 deletions src/app/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ const inter = Inter({ subsets: ["latin"] });
export const metadata = {
title: "Cryptoquotle",
description: "A classic game of decyphering encrypted famous quotes.",
icon: "/cryptoquotle.svg",
};

export default function RootLayout({
Expand Down
5 changes: 5 additions & 0 deletions src/app/page.module.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
.title {
display: flex;
align-items: center;
}

.controls {
display: flex;
flex-wrap: wrap;
Expand Down
11 changes: 10 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import {
type ChangeEvent,
type Reducer,
} from "react";
import Image from "next/image";
import reducer, { initialState } from "@/app/state/reducer";
import { ActionType, type Action, type State } from "@/app/state/types";
import Button from "@/app/components/Button";
Expand Down Expand Up @@ -97,7 +98,15 @@ export default function Home() {
return (
<main>
<header>
<h1>Cryptoquotle</h1>
<h1 className={styles.title}>
<Image
src="/cryptoquotle.svg"
alt="Cryptoquotle logo"
width="32"
height="32"
/>{" "}
Cryptoquotle
</h1>
</header>

<Controls
Expand Down