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

fix: add/remove website urls in examples #709

Merged
merged 3 commits into from
Aug 17, 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
2 changes: 1 addition & 1 deletion src/entities/example/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useCallback } from "react";
import React from "react";
import clsx from "clsx";
import Image from "@theme/IdealImage";
import { date } from "@site/src/shared/lib/date";
Expand Down
6 changes: 4 additions & 2 deletions src/pages/examples/_config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,7 @@ export const examples: Example[] = [
"An application that helps you quit smoking, published in the App Store and Google. Developed with React Native",
version: VERSIONS.V2,
updatedAt: "2024-03-31",
website: "https://dontsmoke.vasyl.site",
source: "https://github.com/penteleichuk/Moke-Smoke",
preview: require("./img/moke-smoke.jpg"),
tech: ["react", "rtk", "persist", "typescript", "firebase"],
Expand Down Expand Up @@ -416,13 +417,14 @@ export const examples: Example[] = [
},
{
title: "Tiny Bunny Mini Game",
description: "Mini-game \"21 points\" in the universe of the visual novel \"Tiny Bunny\".",
description:
'Mini-game "21 points" in the universe of the visual novel "Tiny Bunny".',
source: "https://github.com/sanua356/tiny-bunny",
website: "https://sanua356.github.io/tiny-bunny/",
preview: require("./img/tiny-bunny.png"),
version: VERSIONS.V2,
updatedAt: "2024-08-10",
tech: ["react", "redux-toolkit", 'typescript'],
tech: ["react", "redux-toolkit", "typescript"],
},
// Reverse the list (last examples should be at the top)
].reverse();