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

docs: Mostly just adding information about the project deps #14

Merged
merged 1 commit into from
Oct 1, 2024
Merged
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
docs: Mostly just adding information about the project deps
  • Loading branch information
MichalBryxi committed Oct 1, 2024
commit d52e481bb4f23d226cf4a1b20a076b3d7cc3d305
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -18,3 +18,11 @@ The app is deployed on: https://open-to-dot-dot-dot.pudr.com
## Demo

[![Watch the video](./docs/demo.gif)](./docs/demo.gif)

## Tech stack

- [EmberJS](https://emberjs.com) - A framework for ambitious web developers. Ember.js is a productive, battle-tested JavaScript framework for building modern web applications. It includes everything you need to build rich UIs that work on any device.
- [Frontile](https://frontile.dev/docs) - Frontile aims to provide the legos (components, helpers, modifiers, and styles) necessary for building consistent and powerful Ember.js apps while following best practices from the community and providing both low-level and high-level components for your application.
- [TailwindCSS](https://tailwindcss.com) - A utility-first CSS framework packed with classes like flex, pt-4, text-center and rotate-90 that can be composed to build any design, directly in your markup.
- [TailwindUI](https://tailwindui.com) - Beautifully designed, expertly crafted components and templates, built by the makers of Tailwind CSS. The perfect starting point for your next project.
- [Phosphor icons](https://phosphoricons.com) - Phosphor is a flexible icon family for interfaces, diagrams, presentations — whatever, really.
7 changes: 7 additions & 0 deletions app/components/about/index.gjs
Original file line number Diff line number Diff line change
@@ -8,6 +8,7 @@ import UserCheck from 'ember-phosphor-icons/components/ph-user-check';
import Chat from 'ember-phosphor-icons/components/ph-chat-centered-dots';
import Coins from 'ember-phosphor-icons/components/ph-coins';
import Detective from 'ember-phosphor-icons/components/ph-detective';
import Fire from 'ember-phosphor-icons/components/ph-fire';
import AboutItem from './item';
import { inject as service } from '@ember/service';

@@ -55,6 +56,12 @@ export default class About extends Component {
icon: GitHubLogo,
description: this.intl.t('about.github.description'),
},
{
href: 'https://emberjs.com',
label: this.intl.t('about.ember.label'),
icon: Fire,
description: this.intl.t('about.ember.description'),
},
{
href: 'https://opensource.org/license/MIT',
label: this.intl.t('about.license.label'),
3 changes: 3 additions & 0 deletions translations/en-us.yaml
Original file line number Diff line number Diff line change
@@ -41,6 +41,9 @@ about:
privacy:
label: Privacy
description: This entire application works entirely in your web browser. There are no trackers installed. And I even don't collect any usage statistics on the server side.
ember:
label: Built with EmberJS
description: A framework for ambitious web developers. Ember.js is a productive, battle-tested JavaScript framework for building modern web applications. It includes everything you need to build rich UIs that work on any device.
page-title:
application: "#OpenTo..."
index: "Avatar generator"
Loading