From 232e74ca6a6174b0fef4d2a2a46500c103a1fc10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerd=20M=C3=BCller?= Date: Wed, 16 Oct 2024 11:46:45 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20chore(app):=20update=20README?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 59 +++++++++++++++++++++++++++++-------------------------- 1 file changed, 31 insertions(+), 28 deletions(-) diff --git a/README.md b/README.md index 6b0f512..d2520e5 100755 --- a/README.md +++ b/README.md @@ -1,50 +1,53 @@ -# Grid +

+ + Logo of 'Grid Art Designer' + +

+--- +## About [_Grid Art Designer_](https://digitalwarenkombinat.github.io/grid/) - -# Grid Art Designer - -## Overview Grid Art Designer allows users to create and download grid-based SVG artwork, with options to toggle filters and download the final image as an SVG or PNG. Inspired from Alex Trosts article [Creating Generative SVG Grids](https://frontend.horse/articles/generative-grids/). -## Installation +## Feedback -1. Clone the repository: +Feel free to send us feedback on [Instagram](https://www.instagram.com/digitalwarenkombinat/) or [file an issue](https://github.com/digitalwarenkombinat/glamorouseurope/issues/new). Feature requests are always welcome. -``` - git clone https://github.com/your-repo/grid-art-designer.git - cd grid-art-designer -``` +## Getting started -2. Install dependencies: +Run the following command on your local environment: ``` - npm install +git clone --depth=1 https://github.com/digitalwarenkombinat/grid.git +cd grid +npm install ``` -3. Run the development server: +You can run the application in development mode with live reload: ``` - npm run dev +npm run dev ``` -4. Open http://localhost:3000 to view the app. - -## Usage +Open http://localhost:3000 with your favorite browser to see the application. -- Use the filters to apply different block styles. -- Download your artwork by clicking "Download SVG" or "Download PNG". - -## Dependencies +``` +. +├── README.md # README file +├── next.config.js # Next configuration +├── public # Public folder for assets and fonts +├── src # UI components +└── tsconfig.json # TypeScript configuration +``` -- Next.js: React framework for server-side rendering. -- React: JavaScript library for building user interfaces. -- Tailwind CSS: Utility-first CSS framework. -- html-to-image: Library for converting HTML nodes to images. +You can see the results locally in production mode with: -## License +``` +npm run build +npm run start +``` -This project is licensed under the MIT License. \ No newline at end of file +The generated HTML and CSS files are minified (built-in feature from Next).