Skip to content

Commit

Permalink
Merge pull request #7169 from alkem-io/simple-homepage
Browse files Browse the repository at this point in the history
Simple homepage
  • Loading branch information
valentinyanakiev authored Nov 11, 2024
2 parents 534de77 + 0d83d06 commit 83ce13b
Show file tree
Hide file tree
Showing 151 changed files with 3,457 additions and 4,194 deletions.
2 changes: 1 addition & 1 deletion .build/docker/.env.base
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ VITE_APP_COLLAB_URL=http://localhost:3000
VITE_APP_LOG_ERRORS=true
VITE_APP_NAME=@alkemio/client-web
VITE_APP_SENTRY_AUTH_TOKEN=
VITE_APP_VERSION=0.75.0
VITE_APP_VERSION=0.76.0
VITE_APP_GRAPHQL_ENDPOINT=/graphql
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ npm-debug.log

# misc
.DS_Store
.build/docker/.env.base
.env.local
.env.development.local
.env.test.local
Expand All @@ -30,10 +31,10 @@ yarn-error.log*
public/*config.js
.build/traefik/access.log

.env.base
# eslint
.eslintcache


# Ignores homeserver.db file
**/*.db
*.session.sql
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>Alkemio - Safe Spaces for Collaboration</title>
<meta name="description" content="Join Alkemio: the platform designed to help you achieve your goals by making progress central.">
<meta name="description" content="Join Alkemio! Achieve your goals. Safe smart spaces for collective action.">

<!-- Open Graph Meta Tags used by Facebook, LinkedIn and other social apps -->
<meta property="og:title" content="Alkemio - Safe Spaces for Collaboration">
<meta property="og:description" content="Join Alkemio: the platform designed to help you achieve your goals by making progress central.">
<meta property="og:title" content="Alkemio - Safe smart spaces for collective action.">
<meta property="og:description" content="Achieve your goals. On a platform designed to benefit society.">
<meta property="og:image" content="/alkemio-og.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
</head>
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alkemio/client-web",
"version": "0.76.0",
"version": "0.76.2",
"description": "Alkemio client, enabling users to interact with Challenges hosted on the Alkemio platform.",
"author": "Alkemio Foundation",
"repository": {
Expand Down
6 changes: 6 additions & 0 deletions src/core/apollo/generated/apollo-helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -703,8 +703,10 @@ export type CalendarEventKeySpecifier = (
| 'nameID'
| 'profile'
| 'startDate'
| 'subspace'
| 'type'
| 'updatedDate'
| 'visibleOnParentCalendar'
| 'wholeDay'
| CalendarEventKeySpecifier
)[];
Expand All @@ -720,8 +722,10 @@ export type CalendarEventFieldPolicy = {
nameID?: FieldPolicy<any> | FieldReadFunction<any>;
profile?: FieldPolicy<any> | FieldReadFunction<any>;
startDate?: FieldPolicy<any> | FieldReadFunction<any>;
subspace?: FieldPolicy<any> | FieldReadFunction<any>;
type?: FieldPolicy<any> | FieldReadFunction<any>;
updatedDate?: FieldPolicy<any> | FieldReadFunction<any>;
visibleOnParentCalendar?: FieldPolicy<any> | FieldReadFunction<any>;
wholeDay?: FieldPolicy<any> | FieldReadFunction<any>;
};
export type CalloutKeySpecifier = (
Expand Down Expand Up @@ -3130,12 +3134,14 @@ export type SpaceSettingsFieldPolicy = {
privacy?: FieldPolicy<any> | FieldReadFunction<any>;
};
export type SpaceSettingsCollaborationKeySpecifier = (
| 'allowEventsFromSubspaces'
| 'allowMembersToCreateCallouts'
| 'allowMembersToCreateSubspaces'
| 'inheritMembershipRights'
| SpaceSettingsCollaborationKeySpecifier
)[];
export type SpaceSettingsCollaborationFieldPolicy = {
allowEventsFromSubspaces?: FieldPolicy<any> | FieldReadFunction<any>;
allowMembersToCreateCallouts?: FieldPolicy<any> | FieldReadFunction<any>;
allowMembersToCreateSubspaces?: FieldPolicy<any> | FieldReadFunction<any>;
inheritMembershipRights?: FieldPolicy<any> | FieldReadFunction<any>;
Expand Down
Loading

0 comments on commit 83ce13b

Please sign in to comment.