Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

About Page #56

Merged
merged 23 commits into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
7d6ec91
Add about page
absternator Oct 16, 2024
3fca5f2
Refactor about page content and add new pandemic impact scenarios
absternator Oct 16, 2024
8cafaf7
PR fixes
absternator Oct 17, 2024
3702664
Refactor about page test to use async mount
absternator Oct 17, 2024
5ee0a3d
Refactor about page layout and update logos
absternator Oct 17, 2024
9e19bf4
Merge branch 'main' of https://github.com/j-idea/daedalus-web-app int…
absternator Oct 17, 2024
34a8e50
Merge branch 'main' of https://github.com/j-idea/daedalus-web-app int…
absternator Oct 18, 2024
f408719
Update EPPI Initiative website link in about.vue
absternator Oct 18, 2024
870e496
Merge branch 'main' of https://github.com/j-idea/daedalus-web-app int…
absternator Oct 21, 2024
6389f51
Refactor about page: Add Jameel community logo and fix optional chaining
absternator Oct 21, 2024
8463eb8
Update pages/about.vue
absternator Oct 22, 2024
9dd8870
Refactor about page: Fix typo in GitHub link
absternator Oct 22, 2024
ed829f1
Merge branch 'about-page' of https://github.com/j-idea/daedalus-web-a…
absternator Oct 22, 2024
c2b4a15
Merge branch 'main' of https://github.com/j-idea/daedalus-web-app int…
absternator Oct 23, 2024
d9832d2
justify logos center
absternator Oct 23, 2024
e666313
Merge branch 'main' of https://github.com/j-idea/daedalus-web-app int…
absternator Oct 25, 2024
bdd0b52
Refactor about page to use updated metadata structure
absternator Oct 25, 2024
73e72d3
Refactor about page to include contact email
absternator Oct 25, 2024
a2b5346
Refactor ParameterForm.spec.ts to test only the first two select elem…
absternator Oct 25, 2024
0e849c6
Merge branch 'main' of https://github.com/j-idea/daedalus-web-app int…
absternator Oct 25, 2024
6dcebc8
Refactor about page to remove extra parameters and include country an…
absternator Oct 25, 2024
cfbfb82
Refactor about page to include country and pathogen parameters
absternator Oct 25, 2024
072a792
Update pages/about.vue
absternator Oct 25, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions assets/icons/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ import {
cilCloudDownload,
cilCode,
cilGlobeAlt,
cilInfo,
cilMedicalCross,
cilMenu,
cilPencil,
Expand All @@ -225,6 +226,7 @@ export const iconsSet = {
cilPencil,
cilPlus,
cilShieldAlt,
cilInfo,
cifAd,
cifAe,
cifAf,
Expand Down
30 changes: 30 additions & 0 deletions assets/img/imperial_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
121 changes: 121 additions & 0 deletions assets/img/jameel-community-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/jameel-logo1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/prepare-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 11 additions & 3 deletions components/SideBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,19 @@
>
<CSidebarNav role="navigation">
<CNavItem>
<NuxtLink prefetch-on="interaction" to="/scenarios/new" class="nav-link">
<NuxtLink
prefetch-on="interaction"
to="/scenarios/new"
class="nav-link"
>
<CIcon icon="cilPlus" size="lg" class="nav-icon" /> New scenario
</NuxtLink>
</CNavItem>
<CNavItem>
<NuxtLink prefetch-on="interaction" to="/about" class="nav-link">
<CIcon icon="cilInfo" size="lg" class="nav-icon" /> About
</NuxtLink>
</CNavItem>
</CSidebarNav>
<CSidebarHeader class="border-top d-flex">
<!-- Use CoreUI Sidebar Header component instead of footer so that stylings for CoreUI Sidebar Brand component work -->
Expand Down Expand Up @@ -73,5 +82,4 @@ onBeforeUnmount(() => {
});
</script>

<style lang="scss" scoped>
</style>
<style lang="scss" scoped></style>
Loading