Make your life luxurious. At Grand Hotel, embrace the royal R&R experience you deserve!
This project is hosted live TBA**.
-
Interested code architecture?
- SCSS/CSS: Instead of importing a bunch of CSS files and cluttering the top of a component file, this application uses
styles/index.js
. All styles are accessed from that directory, which are then imported at the top level of the application. See the file setup | See the top level import (Line 3) - Components: All components and subcomponents exist at
src/components
. See components structure
- SCSS/CSS: Instead of importing a bunch of CSS files and cluttering the top of a component file, this application uses
-
Interested in cross-browser functionality?
- TBA:
-
Interested in design decisions?
- Device Scaling: There's 2 different ways to design responsively using media queries. The first method is by using absolute measurements, such as literal pixels (BAD!). The second involves understanding screen PPI (pixels per inch), setting
font-size: 62.5%
, and measuring almost EVERYTHING in rem units. This allows an app to scale to any device. - Fibonacci Sequence: Developers often get hung up on what units to use when making design decisions. To save time, I use the Fibonacci Sequence
..., 2, 3, 5, 8, 13, 21, 34, ... etc.
as my default choice of measurement. These values are changed when polishing up the design, but generally you can expect me to have a method and reason for my pattern of development.
- Connect with me on LinkedIn!
- Email: matthewpalmer9@outlook.com
- Online Resume: Matthew Palmer's Resume
- Device Scaling: There's 2 different ways to design responsively using media queries. The first method is by using absolute measurements, such as literal pixels (BAD!). The second involves understanding screen PPI (pixels per inch), setting