-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: refresh "marketing" pages with new copy and design (#438)
* New landing page interim exploration * WIP * Refactor and new landing page prototype * Update social image and bump dependencies * Bump dependencies to latest version
- Loading branch information
Showing
27 changed files
with
193 additions
and
147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 2 additions & 3 deletions
5
src/components/pages/LinkTagGenerator/LinkTagGenerator.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
import i18next, { t, changeLanguage } from "i18next"; | ||
import Base from "../layouts/Base.astro"; | ||
changeLanguage("en"); | ||
const title = t("site.title"); | ||
const description = t("site.description"); | ||
--- | ||
<Base title={title} description={description}> | ||
<section class="hero"> | ||
<div class="heroContent"> | ||
<img | ||
alt="Web Monetization Logo" | ||
class="heroLogo" | ||
src="/img/wm-logo--animated.svg" | ||
/> | ||
<h2 class="heroHeading">Pay the Web forward</h2> | ||
</div> | ||
</section> | ||
</Base> | ||
|
||
<style> | ||
/* Hero section styles */ | ||
.hero { | ||
background-image: url("/img/bg-lines.svg"), url("/img/bg-tile.svg"); | ||
background-repeat: repeat-x, repeat; | ||
background-size: 25em, 40%; | ||
background-position: bottom, center; | ||
padding-block-end: 0; | ||
height: 50vh; | ||
display: flex; | ||
} | ||
|
||
.heroContent { | ||
margin: auto; | ||
text-align: center; | ||
} | ||
|
||
.heroLogo { | ||
max-width: 16em; | ||
margin-block-end: var(--space-l); | ||
} | ||
|
||
.heroHeading { | ||
font-size: var(--step-6); | ||
line-height: 1.2; | ||
color: var(--wm-accent); | ||
} | ||
</style> |
Oops, something went wrong.