-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #114 from grucloud/social-links-profile
Social links profile
- Loading branch information
Showing
26 changed files
with
586 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
lerna-debug.log* | ||
|
||
node_modules | ||
dist | ||
dist-ssr | ||
*.local | ||
|
||
# Editor directories and files | ||
.vscode/* | ||
!.vscode/extensions.json | ||
.idea | ||
.DS_Store | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
save-exact = true | ||
package-lock = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Frontend Mentor Recipe Page | ||
|
||
Here is the implementation in [Bau.js](https://github.com/grucloud/bau) of the [Frontend Mentor Recipe Page code challenge](https://www.frontendmentor.io/challenges/https://www.frontendmentor.io/challenges/recipe-page-KiTsR8QQKm) | ||
|
||
## Workflow | ||
|
||
Install the dependencies: | ||
|
||
```sh | ||
npm install | ||
``` | ||
|
||
Start a development server: | ||
|
||
```sh | ||
npm run dev | ||
``` | ||
|
||
Build a production version: | ||
|
||
```sh | ||
npm run build | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link | ||
rel="icon" | ||
type="image/png" | ||
href="./assets/images/favicon-32x32.png" | ||
/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Recipe Page | FrontendMentor</title> | ||
</head> | ||
<body> | ||
<div id="app"></div> | ||
<script type="module" src="/src/main.ts"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"name": "frontendmentor-recipe-page", | ||
"private": true, | ||
"version": "0.85.0", | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "tsc && vite build", | ||
"preview": "vite preview" | ||
}, | ||
"devDependencies": { | ||
"typescript": "^5.0.2", | ||
"vite": "^5.2.11" | ||
}, | ||
"dependencies": { | ||
"@grucloud/bau": "^0.85.0", | ||
"@grucloud/bau-css": "^0.85.0", | ||
"@grucloud/bau-ui": "^0.85.0" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { createContext, type Context } from "@grucloud/bau-ui/context"; | ||
import recipePage from "./recipePage"; | ||
|
||
import "./style.css"; | ||
|
||
const context = createContext(); | ||
|
||
const app = (context: Context) => { | ||
const { bau } = context; | ||
const { main } = bau.tags; | ||
|
||
const RecipePage = recipePage(context); | ||
|
||
return function () { | ||
return main(RecipePage()); | ||
}; | ||
}; | ||
|
||
const App = app(context); | ||
document.getElementById("app")?.replaceChildren(App()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,162 @@ | ||
import { type Context } from "@grucloud/bau-ui/context"; | ||
|
||
export default function (context: Context) { | ||
const { bau, css } = context; | ||
const { | ||
h1, | ||
h2, | ||
h3, | ||
p, | ||
article, | ||
img, | ||
section, | ||
strong, | ||
ul, | ||
ol, | ||
li, | ||
table, | ||
tbody, | ||
th, | ||
tr, | ||
td, | ||
} = bau.tags; | ||
|
||
const className = css` | ||
max-width: 700px; | ||
padding: 1.5rem; | ||
margin: 5rem 0; | ||
@media (max-width: 600px) { | ||
margin: 0; | ||
} | ||
background-color: var(--White); | ||
border-radius: 0.5rem; | ||
.img-omelete { | ||
width: 100%; | ||
border-radius: 0.5rem; | ||
} | ||
h1, | ||
h2 { | ||
font-family: "Young Serif"; | ||
} | ||
h1 { | ||
color: var(--Stone-900); | ||
font-weight: 400; | ||
font-size: 2.2em; | ||
} | ||
h2 { | ||
color: var(--Brown-800); | ||
font-weight: 400; | ||
} | ||
ul, | ||
ol { | ||
padding-left: 1rem; | ||
li { | ||
color: var(--WengeBrown); | ||
padding: 0.3rem; | ||
list-style-position: inside; | ||
} | ||
} | ||
section.preparation-time { | ||
background-color: var(--Rose-50); | ||
padding: 1.2rem; | ||
border-radius: 0.7rem; | ||
h3 { | ||
color: var(--Rose-800); | ||
} | ||
} | ||
ol { | ||
li::marker { | ||
font-weight: 700; | ||
color: var(--Brown-800); | ||
} | ||
} | ||
table { | ||
width: 100%; | ||
border-collapse: collapse; | ||
tbody { | ||
tr { | ||
border-bottom: 1px solid var(--Stone-150); | ||
th { | ||
padding: 1rem; | ||
font-weight: normal; | ||
text-align: start; | ||
color: var(--Stone-600); | ||
} | ||
td { | ||
font-weight: 700; | ||
color: var(--Rose-800); | ||
} | ||
} | ||
} | ||
} | ||
`; | ||
|
||
return function myComponent() { | ||
return article( | ||
{ class: className }, | ||
img({ | ||
class: "img-omelete", | ||
src: "./assets/images/image-omelette.jpeg", | ||
alt: "omelette", | ||
}), | ||
h1("Simple Omelette Recipe"), | ||
p( | ||
"An easy and quick dish, perfect for any meal. This classic omelette combines beaten eggs cooked to perfection, optionally filled with your choice of cheese, vegetables, or meats." | ||
), | ||
section( | ||
{ class: "preparation-time" }, | ||
h3("Preparation Time"), | ||
ul( | ||
li(strong("Total: "), "Approximately 10 minutes"), | ||
li(strong("Preparation: "), "5 minutes"), | ||
li(strong("Cooking: "), "5 minutes") | ||
) | ||
), | ||
h2("Ingredients"), | ||
ul( | ||
li("2-3 large eggs"), | ||
li("Salt, to taste"), | ||
li("Pepper, to taste"), | ||
li("1 tablespoon of butter or oil"), | ||
li("Optional fillings: cheese, diced vegetables, cooked meats, herbs") | ||
), | ||
h2("Instructions"), | ||
ol( | ||
li( | ||
strong("Beat the eggs: "), | ||
" In a bowl, beat the eggs with a pinch of salt and pepper until they are well mixed. You can add a tablespoon of water or milk for a fluffier texture." | ||
), | ||
li( | ||
strong("Heat the pan: "), | ||
"Place a non-stick frying pan over medium heat and add butter or oil." | ||
), | ||
li( | ||
strong("Add fillings (optional): "), | ||
"When the eggs begin to set at the edges but are still slightly runny in the middle, sprinkle your chosen fillings over one half of the omelette." | ||
), | ||
li( | ||
strong("Fold and serve: "), | ||
"As the omelette continues to cook, carefully lift one edge and fold it over the fillings. Let it cook for another minute, then slide it onto a plate." | ||
), | ||
li( | ||
strong("Enjoy: "), | ||
"Serve hot, with additional salt and pepper if needed." | ||
) | ||
), | ||
h2("Nutrition"), | ||
p( | ||
"The table below shows nutritional values per serving without the additional fillings." | ||
), | ||
table( | ||
tbody( | ||
tr(th("Calories"), td("277kcal")), | ||
tr(th("Carbs"), td("0g")), | ||
tr(th("Protien"), td("20g")), | ||
tr(th("Fat"), td("22g")) | ||
) | ||
) | ||
); | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
@import url("https://fonts.googleapis.com/css2?family=Outfit:[email protected]&family=Young+Serif&display=swap"); | ||
|
||
* { | ||
margin: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
:root { | ||
--White: hsl(0, 0%, 100%); | ||
--Stone-100: hsl(30, 54%, 90%); | ||
--Stone-150: hsl(30, 18%, 87%); | ||
--Stone-600: hsl(30, 10%, 34%); | ||
--Stone-900: hsl(24, 5%, 18%); | ||
|
||
--Brown-800: hsl(14, 45%, 36%); | ||
|
||
--Rose-800: hsl(332, 51%, 32%); | ||
--Rose-50: hsl(330, 100%, 98%); | ||
} | ||
|
||
body { | ||
font-family: "Outfit", sans-serif; | ||
background-color: var(--Stone-100); | ||
color: var(--Stone-600); | ||
display: grid; | ||
place-items: center; | ||
max-width: 100vw; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/// <reference types="vite/client" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "ES2020", | ||
"useDefineForClassFields": true, | ||
"module": "ESNext", | ||
"lib": ["ES2020", "DOM", "DOM.Iterable"], | ||
"skipLibCheck": true, | ||
|
||
/* Bundler mode */ | ||
"moduleResolution": "bundler", | ||
"allowImportingTsExtensions": true, | ||
"resolveJsonModule": true, | ||
"isolatedModules": true, | ||
"noEmit": true, | ||
|
||
/* Linting */ | ||
"strict": true, | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": true, | ||
"noFallthroughCasesInSwitch": true | ||
}, | ||
"include": ["src"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { defineConfig } from "vite"; | ||
|
||
export default defineConfig(({ command, mode, ssrBuild }) => { | ||
return { | ||
server: { | ||
open: true, | ||
}, | ||
}; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
lerna-debug.log* | ||
|
||
node_modules | ||
dist | ||
dist-ssr | ||
*.local | ||
|
||
# Editor directories and files | ||
.vscode/* | ||
!.vscode/extensions.json | ||
.idea | ||
.DS_Store | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
save-exact = true | ||
package-lock = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Frontend Mentor Social Link Profile | ||
|
||
Here is the implementation in [Bau.js](https://github.com/grucloud/bau) of the [Frontend Mentor Social Link Profile code challenge](https://www.frontendmentor.io/challenges/social-links-profile-UG32l9m6dQ/hub) | ||
|
||
## Workflow | ||
|
||
Install the dependencies: | ||
|
||
```sh | ||
npm install | ||
``` | ||
|
||
Start a development server: | ||
|
||
```sh | ||
npm run dev | ||
``` | ||
|
||
Build a production version: | ||
|
||
```sh | ||
npm run build | ||
``` |
Oops, something went wrong.