This repo is live at https://thekrausshaus.com. A digital hub for guests visiting the Krauss Haus, currently featuring our curated bar menus. This site serves as a central resource for visitors to access our seasonal cocktail offerings and will expand to include additional guest resources in the future.
The site is built with SvelteKit and TailwindCSS, focusing on simplicity and performance. The design features:
First, install dependencies:
npm install
Then, start the development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
This will start the development server at http://localhost:5173. The page will automatically reload when you make changes to the code.
To create a production version of the app:
npm run build
# or
yarn build
# or
pnpm build
You can preview the production build with:
npm run preview
# or
yarn preview
# or
pnpm preview
Build and run the container:
# Build the Docker image
docker build -t krauss-haus -f docker/Dockerfile .
# Run the container
docker run -p 8080:80 krauss-haus
The site will be available at http://localhost:8080
Images have been generated with ChatGPT. All cocktail images typically follow the following prompt template:
Create an artistic painting of a
namecocktail in atype of glasswithtype of ice,and any garnishes or other visual details. Use loose brushstrokes and an expressive watercolor style withcolortones. Make this a completely transparent PNG with no background at all, although minor abstract background directly behind the cocktail is okay as long as it highlights the cocktail itself. The illustration should have a hand-painted artistic interpretation with clear edges and a contained design. Portrait orientation (taller than wide).
An example prompt is:
Create an artistic painting of a jet pilot cocktail in a rocks glass with crushed ice, a speared maraschino cherry on a cocktail pick (no other garnish), and a straw. Use loose brushstrokes and an expressive watercolor style with translucent light brown tones. Make this a completely transparent PNG with no background at all, although minor abstract background directly behind the cocktail is okay as long as it highlights the cocktail itself. The illustration should have a hand-painted artistic interpretation with clear edges and a contained design. Portrait orientation (taller than wide).
MIT