diff --git a/js/components/PageIndex.js b/js/components/PageIndex.js index e8ec98f..9cefe3d 100644 --- a/js/components/PageIndex.js +++ b/js/components/PageIndex.js @@ -15,15 +15,19 @@ export default function PageIndex({ ...props }) { const newestRelease = props.releases.slice(-1)[0]; + const numberOfReleases = props.releases.length; return (
- + AOE Technology Radar
+
+ Published {formatRelease(newestRelease)} +
); } diff --git a/styles/components/page.css b/styles/components/page.css index 3793c9c..c887bb4 100644 --- a/styles/components/page.css +++ b/styles/components/page.css @@ -29,6 +29,7 @@ } &__footer { + margin-top: 5px; flex: 0 0 auto; } } diff --git a/styles/components/publish-date.css b/styles/components/publish-date.css new file mode 100644 index 0000000..5143afb --- /dev/null +++ b/styles/components/publish-date.css @@ -0,0 +1,8 @@ +.publish-date { + color: var(--color-gray-normal); + text-align: right; + + @media (--until-sm) { + text-align: center; + } +} \ No newline at end of file