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

Website/new greenwood logo #1094

Merged
merged 7 commits into from
May 4, 2023
Merged
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
Binary file removed www/assets/greenwood-logo-1000w.png
Binary file not shown.
Binary file added www/assets/greenwood-logo-1000w.webp
Binary file not shown.
Binary file removed www/assets/greenwood-logo-1500w.png
Binary file not shown.
Binary file added www/assets/greenwood-logo-1500w.webp
Binary file not shown.
Binary file removed www/assets/greenwood-logo-300w.png
Binary file not shown.
Binary file added www/assets/greenwood-logo-300w.webp
Binary file not shown.
Binary file removed www/assets/greenwood-logo-500w.png
Binary file not shown.
Binary file added www/assets/greenwood-logo-500w.webp
Binary file not shown.
Binary file removed www/assets/greenwood-logo-750w.png
Binary file not shown.
Binary file added www/assets/greenwood-logo-750w.webp
Binary file not shown.
Binary file added www/assets/greenwood-logo-og.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 removed www/assets/greenwood-logo-sml.jpg
Binary file not shown.
11 changes: 5 additions & 6 deletions www/components/banner/banner.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
:host {
& .banner {
background-color: #fff;
min-height: 60vh;

& .content {
padding: 5vh 10px;
Expand All @@ -46,7 +45,7 @@
& h3 {
padding: 10px 0;
max-width: 70%;
margin: 0 auto 10px;
margin: 20px auto;
color: #201e2e;

@media (min-width: 768px) {
Expand All @@ -56,8 +55,9 @@
}

& img {
width: 300px;
height: 300px;
display: block;
width: 40%;
margin: 10px auto;
}
}

Expand Down Expand Up @@ -98,8 +98,7 @@
}

& img {
width: 250px;
height: 250px;
width: 90%;
}
}
}
Expand Down
14 changes: 7 additions & 7 deletions www/components/banner/banner.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ class Banner extends LitElement {
<eve-container>
<div class='content'>
<img
src="../../assets/greenwood-logo-300w.png"
src="/assets/greenwood-logo-300w.webp"
alt="Greenwood Logo"
srcset="../../assets/greenwood-logo-300w.png 1x,
../../assets/greenwood-logo-500w.png 2x,
../../assets/greenwood-logo-750w.png 3x,
../../assets/greenwood-logo-1000w.png 4x,
../../assets/greenwood-logo-1500w.png 5x"/>

srcset="/assets/greenwood-logo-300w.webp 350w,
/assets/greenwood-logo-500w.webp 500w,
/assets/greenwood-logo-750w.webp 750w,
/assets/greenwood-logo-1000w.webp 1000w,
/assets/greenwood-logo-1500w.webp 1500w"/>
<h3>Your full stack <span class="emphasis-text">workbench for the web</span>. Ready to help you build your next. . . <span class="${this.animateState}">${currentProjectType}.</span></h3>

<eve-button size="md" href="/getting-started/" style="${buttonCss}">Get Started</eve-button>
Expand Down
Binary file modified www/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion www/templates/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<meta name="twitter:site" content="@PrjEvergreen"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="https://www.greenwoodjs.io"/>
<meta property="og:image" content="https://www.greenwoodjs.io/assets/greenwood-logo-300w.png"/>
<meta property="og:image" content="https://www.greenwoodjs.io/assets/greenwood-logo-og.png"/>
<meta property="og:description" content="Your workbench for the web, focused on supporting modern web standards and development to help you create your next project."/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="mobile-web-app-capable" content="yes"/>
Expand Down