Skip to content

Commit b94a3ef

Browse files
author
Phil Hawksworth
committed
adding a simple tout until the conferecne is done
1 parent a7de230 commit b94a3ef

File tree

5 files changed

+22
-4
lines changed

5 files changed

+22
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"build:css": "postcss src/css/tailwind.css -o dist/css/styles.css",
1818
"watch:html": "ELEVENTY_ENV=dev eleventy --watch --quiet",
1919
"watch:css": "postcss src/css/tailwind.css -o dist/css/styles.css --watch",
20-
"serve": "live-server dist --quiet --port=8090",
20+
"serve": "npx live-server dist --quiet --port=8090",
2121
"start": "npm-run-all --parallel watch:html watch:css serve",
2222
"clean": "rm -rf dist"
2323
},

src/site/css/ticker.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
}
99

1010
.logos-ticker-fade {
11-
background: linear-gradient(to right, rgba(14, 24, 42, 1) 0%, rgba(14, 24, 42, .01) 20%, rgba(14, 24, 42, .01) 80%, rgba(14, 24, 42, 1) 100%);
11+
background: linear-gradient(to right, rgba(22, 26, 43, 1) 0%, rgba(22, 26, 43, .01) 20%, rgba(22, 26, 43, .01) 80%, rgba(22, 26, 43, 1) 100%);
1212
height: 100%;
1313
left: 0;
1414
position: absolute;

src/site/img/conf-2021-tout.png

73.4 KB
Loading

src/site/index.njk

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,33 @@ layout: layouts/base.njk
55

66
{% import "components/ticker.njk" as ticker %}
77
{% import "components/section-heading.njk" as section %}
8+
{% import "components/zinger-cta.njk" as zinger %}
89

910
<section class="mt-16">
1011
<p class="w-1/2">Comprehensive guide for building Jamstack sites and home of the global Jamstack community.</p>
1112
<h1 class="hero-text">The modern way to&nbsp;build <img src="/img/svg/websites-and-apps.svg" width="545" height="88" alt="Websites and Apps" class="inline-block mr-2 hero-text-img"> that delivers better performance</h1>
1213
<a href="/community" class="cta">Join the global community</a>
1314
</section>
1415

15-
<section class="mb-20 p-0">
16+
<section class="mb-10 p-0">
1617
{{ ticker.icons() }}
1718
{{ ticker.main() }}
1819
</section>
1920

21+
<section class="mb-10">
22+
<a href="https://jamstackconf.com" class="border-2 border-white block rounded-xl shadow-lg text-center ">
23+
<img src="/img/conf-2021-tout.png" alt="Jamstack Conf 2021" class="rounded-xl w-2/3 mx-auto my-8">
24+
<p class="font-bold text-3xl my-0">
25+
October 6-7, 2021
26+
</p>
27+
<p class="font-bold text-lg md:text-xl mb-10 w-2/3 md:w-1/2 mx-auto">
28+
Join 20,000+ web developers to learn how it started, how it's going, and what's next!
29+
</p>
30+
</a>
31+
</section>
32+
33+
34+
2035
<section class="mb-20">
2136
<h2>Why Jamstack</h2>
2237
<p class="w-2/3 mb-12">
@@ -25,6 +40,8 @@ layout: layouts/base.njk
2540

2641
{{ section.icons() }}
2742

43+
44+
2845
{{ section.benefit(
2946
"Better Performance",
3047
"#pink_lightning",

tailwind.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ module.exports = {
2121
500: "#DF4A1F",
2222
},
2323
blue : {
24-
900: '#0E182A', // old
24+
//900: '#0E182A', // old
25+
900: '#161a2b', // old
2526
800: '#252D3B', // old
2627
300: '#718096', // old
2728
200: '#CBD5E0', // old

0 commit comments

Comments
 (0)