diff --git a/package-lock.json b/package-lock.json index 42711d3..70cbbbb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -16,6 +16,7 @@ "svelte-check": "^3.6.0", "tslib": "^2.4.1", "typescript": "^5.0.0", + "typescript-plugin-toml": "^0.3.1", "vite": "^4.4.2", "vite-plugin-toml": "^0.6.0" } @@ -1717,6 +1718,12 @@ "node": ">=8.0" } }, + "node_modules/toml": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/toml/-/toml-3.0.0.tgz", + "integrity": "sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==", + "dev": true + }, "node_modules/toml-eslint-parser": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/toml-eslint-parser/-/toml-eslint-parser-0.6.1.tgz", @@ -1760,6 +1767,18 @@ "node": ">=14.17" } }, + "node_modules/typescript-plugin-toml": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/typescript-plugin-toml/-/typescript-plugin-toml-0.3.1.tgz", + "integrity": "sha512-pBRKcuidbQyGQZOejx3abJtjX2NRemYCIBImWAJ/Lek6byUJObw/j/jPwdlrOWEcIo37t4AHHeh9fXAgQ8FZzA==", + "dev": true, + "dependencies": { + "toml": "^3.0.0" + }, + "peerDependencies": { + "typescript": "^5.0.2" + } + }, "node_modules/undici": { "version": "5.26.5", "resolved": "https://registry.npmjs.org/undici/-/undici-5.26.5.tgz", diff --git a/package.json b/package.json index 04bded6..61e988d 100644 --- a/package.json +++ b/package.json @@ -18,6 +18,7 @@ "svelte-check": "^3.6.0", "tslib": "^2.4.1", "typescript": "^5.0.0", + "typescript-plugin-toml": "^0.3.1", "vite": "^4.4.2", "vite-plugin-toml": "^0.6.0" }, diff --git a/src/app.scss b/src/app.scss index 4d8a8ae..19c944d 100644 --- a/src/app.scss +++ b/src/app.scss @@ -24,4 +24,22 @@ a { .float-right { float: right; +} + + +.card { + width: 50%; + margin: auto; +} + +@media (max-width: 500px) { + .card { + width: 100%; + } +} + +@media (min-width: 500px) and (max-width: 1000px) { + .card { + width: 75%; + } } \ No newline at end of file diff --git a/src/lib/assets/plants.toml b/src/lib/assets/plants.toml new file mode 100644 index 0000000..846dab9 --- /dev/null +++ b/src/lib/assets/plants.toml @@ -0,0 +1,34 @@ +[aloe-vera] +name = "Aloe Vera" +bin_name = "Aloe Vera" + +[aloe-vera.image] +small = "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Aloe_Vera_%284700054020%29.jpg/320px-Aloe_Vera_%284700054020%29.jpg" +medium = "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Aloe_Vera_%284700054020%29.jpg/1024px-Aloe_Vera_%284700054020%29.jpg" +large = "https://upload.wikimedia.org/wikipedia/commons/d/d2/Aloe_Vera_%284700054020%29.jpg" +source = "https://commons.wikimedia.org/wiki/File:Aloe_Vera_(4700054020).jpg" +alt = """ +Aloe Vera. \ +Tentacle-like succulent leaves sprout out from the base of the plant \ +going up at multiple angles. +""" + +[aloe-vera.temp] +death = 5 +lower = 12 +upper = 29 + +[aloe-vera.site] +description = """ +Aloe Vera prefers to grow in direct sunlight at temperatures between 12°C and 29°C. Temperatures below 5°C might kill the plant. Aloe Vera doesn't have any special humidity preferences. +""" +light = "full or part sun" +humidity = "any" + + +[aloe-vera.care] +description = """ +Aloe Vera needs to be watered about ever 16 days. Make sure the soil is almost completely dry before watering it as it can be overwatered easily. +""" +water_schedule = "16 days" +fertilize_schedule = "month" diff --git a/src/routes/plants/[plant]/+page.svelte b/src/routes/plants/[plant]/+page.svelte new file mode 100644 index 0000000..e9e3156 --- /dev/null +++ b/src/routes/plants/[plant]/+page.svelte @@ -0,0 +1,64 @@ + + +