Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
18 changes: 10 additions & 8 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,18 +85,20 @@ github = "https://github.com/sciencelivehub"
twitter = "https://twitter.com/sciencelive"

# Hero Section - Updated with Three Pillars Messaging
hero_title = "Science Live: Research beyond Walls"
hero_subtitle = "Surface your discussions, reasoning, methods, data, and findings with AI-assisted guidance, creating knowledge bricks that make your research traceable, reproducible, and ready for your team and others to build upon."
hero_title_1 = "Transform research into"
hero_title_2 = "connected knowledge"
hero_title_3 = "through stackable knowledge bricks"
hero_subtitle = "Making scientific work FAIR: Findable, Accessible, Interoperable, Reusable."
hero_tagline = "Bridge research and industry with stackable knowledge bricks — earn travel funding through quality contributions."

# Hero Buttons
hero_primary_button_text = "Join Beta Waitlist"
hero_primary_button_url = "https://formspree.io/f/mwpndawr"
hero_primary_button_icon = "envelope"
hero_primary_button_text = "Web Platform"
hero_primary_button_url = "https://platform.sciencelive4all.org"
hero_primary_button_icon = "computer"

hero_secondary_button_text = "Book Strategy Call"
hero_secondary_button_url = "https://calendly.com/anne-fouilloux/30min"
hero_secondary_button_icon = "video"
hero_secondary_button_text = "Zotero Plugin"
hero_secondary_button_url = "https://sciencelive4all.org/science-live-platform/zotero"
hero_secondary_button_icon = "puzzle-piece"

# Core Values
core_values = "Stackable • Traceable • Rewarded"
Expand Down
4 changes: 2 additions & 2 deletions content/privacy.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ We may also share personal data:
- To protect the rights, property, or safety of Viten Hub AS, our users, or the public.
- In connection with a merger, acquisition, or sale of assets, with appropriate notice to affected users.

## 7. Your Rights Under GDPR
## 7. Your Rights Under GDPR {#7-your-rights-under-gdpr}

As a data subject, you have the following rights under the GDPR. To exercise any of these rights, contact us at contact@vitenhub.no.

Expand Down Expand Up @@ -173,7 +173,7 @@ We retain personal data only as long as necessary for the purposes described in

Inactive accounts (no login for 24 months) will receive a warning email. If no action is taken within 30 days, the account may be deactivated. Published nanopublications remain accessible regardless of account status.

## 10. Cookies and Similar Technologies
## 10. Cookies and Similar Technologies {#10-cookies-and-similar-technologies}

We use cookies and similar technologies to operate and improve the Service.

Expand Down
Binary file modified static/assets/favicon.ico
Binary file not shown.
Binary file modified static/assets/img/sciencelive-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 29 additions & 1 deletion static/css/science-live.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
:root {
--primary-color: #051d40;
--primary-color: #0f2547;
--secondary-color: #be2e78;
--accent-blue: #4a9eff;
--primary-light: #2a5788;
Expand Down Expand Up @@ -238,6 +238,7 @@ body {
}

.hero-container {
text-align: center;
max-width: 100%;
margin: 0 auto;
padding: 2rem 3rem;
Expand All @@ -258,6 +259,33 @@ body {
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero-content h1_1 {
font-size: 3.2rem;
font-weight: 800;
line-height: 1.2;
margin-bottom: 1.0rem;
background: #ffffff;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero-content h1_2 {
font-size: 3.2rem;
font-weight: 800;
line-height: 1.2;
margin-bottom: 1.0rem;
background: linear-gradient(135deg, var(--secondary-color), #7f2e66);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero-content h1_3 {
font-size: 3.2rem;
font-weight: 800;
line-height: 1.2;
margin-bottom: 1.0rem;
background: #ffffff;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.hero-content p {
font-size: 1.3rem;
Expand Down
4 changes: 3 additions & 1 deletion templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
<section class="hero">
<div class="hero-container">
<div class="hero-content">
<h1>{{ config.extra.hero_title }}</h1>
<h1_1>{{ config.extra.hero_title_1 }}</h1_1>
<h1_2>{{ config.extra.hero_title_2 }}</h1_2>
<h1_3>{{ config.extra.hero_title_3 }}</h1_3>
<p>{{ config.extra.hero_subtitle }}</p>
<p style="font-size: 1.1rem; color: rgba(255, 255, 255, 0.8); font-weight: 500; margin-top: 1rem;">{{ config.extra.hero_tagline }}</p>

Expand Down