diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 84ce12af..e0fe5d42 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -4,7 +4,6 @@ about: Create a report to help us improve title: '' labels: '' assignees: '' - --- **Describe the bug** @@ -19,9 +18,9 @@ A clear and concise description of what you expected to happen. **Screenshots or files** If applicable, add screenshots/files to help explain your problem. -**machine/OS: - - OS: [e.g. iOS] +\*\*machine/OS: +- OS: [e.g. iOS] **Additional context** Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index f08afbef..66a35033 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -4,7 +4,6 @@ about: Suggest an idea for this project title: '' labels: '' assignees: '' - --- **Is your feature request related to a problem? Please describe.** @@ -17,4 +16,4 @@ A clear and concise description of what you want to happen. A clear and concise description of any alternative solutions or features you've considered. **Additional context** -Add any other context or screenshots about the feature request here. \ No newline at end of file +Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/meta_issue.md b/.github/ISSUE_TEMPLATE/meta_issue.md index b97c2770..854a9234 100644 --- a/.github/ISSUE_TEMPLATE/meta_issue.md +++ b/.github/ISSUE_TEMPLATE/meta_issue.md @@ -4,12 +4,10 @@ about: A meat-feature is a feature that decays naturally into multiple individua title: '' labels: '' assignees: '' - --- **What's the overarching idea and why is this additional feature necessary?** **Describe into what individual steps/features your suggestion decays, and outline their basic ideas in one sentence each** - **Additional context** diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md index 81946467..53c3e20f 100644 --- a/.github/ISSUE_TEMPLATE/question.md +++ b/.github/ISSUE_TEMPLATE/question.md @@ -4,7 +4,6 @@ about: Ask something about the functionality of the software title: '' labels: '' assignees: '' - --- **What is your question?** diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d4f9e72c..ffb2fc6b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -14,4 +14,4 @@ updates: all: applies-to: version-updates patterns: - - "*" \ No newline at end of file + - '*' diff --git a/README.md b/README.md index 4d2e209d..2101dffc 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To start a dev server: ## Notes -Commands used to generate most of the initial empty app: +Commands used to generate most of the initial empty app: ```bash pnpm create svelte@latest diff --git a/src/app.html b/src/app.html index c1524fbf..7fc938da 100644 --- a/src/app.html +++ b/src/app.html @@ -6,7 +6,7 @@ %sveltekit.head% - +
%sveltekit.body%
diff --git a/src/lib/assets/mondey_dark.svg b/src/lib/assets/mondey_dark.svg new file mode 100644 index 00000000..57494b2f --- /dev/null +++ b/src/lib/assets/mondey_dark.svg @@ -0,0 +1,217 @@ + +image/svg+xml \ No newline at end of file diff --git a/src/lib/assets/mondey_light.svg b/src/lib/assets/mondey_light.svg new file mode 100644 index 00000000..1609b39f --- /dev/null +++ b/src/lib/assets/mondey_light.svg @@ -0,0 +1,217 @@ + +image/svg+xml \ No newline at end of file diff --git a/src/routes/+layout.ts b/src/routes/+layout.ts index c8cacf08..189f71e2 100644 --- a/src/routes/+layout.ts +++ b/src/routes/+layout.ts @@ -1 +1 @@ -export const prerender = true; \ No newline at end of file +export const prerender = true; diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index e6ee66b8..22bb44db 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -1,9 +1,31 @@ -
- - This is a work-in-progress prototype frontend for the MONDEY website - -
\ No newline at end of file +

This is a work-in-progress prototype frontend for the MONDEY website

+ + + MONDEY Logo + + + + + Home + Downloads + Aktuelles + Kontakt + + + +
diff --git a/tailwind.config.ts b/tailwind.config.ts index 2fea38d3..18500ece 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -1,9 +1,13 @@ -import flowbitePlugin from 'flowbite/plugin' +import flowbitePlugin from 'flowbite/plugin'; +import typographyPlugin from '@tailwindcss/typography'; import type { Config } from 'tailwindcss'; export default { - content: ['./src/**/*.{html,js,svelte,ts}', './node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}'], + content: [ + './src/**/*.{html,js,svelte,ts}', + './node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}' + ], darkMode: 'selector', theme: { extend: { @@ -25,5 +29,5 @@ export default { } }, - plugins: [flowbitePlugin, require('@tailwindcss/typography')] + plugins: [flowbitePlugin, typographyPlugin] } as Config;