Skip to content

Commit

Permalink
chore(update): add images
Browse files Browse the repository at this point in the history
  • Loading branch information
ndu committed Aug 25, 2024
1 parent bb5793a commit b45dcf5
Show file tree
Hide file tree
Showing 30 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion research/astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { defineConfig } from 'astro/config'
import tailwind from '@astrojs/tailwind'
import node from '@astrojs/node'
import svelte from '@astrojs/svelte'

import vercel from '@astrojs/vercel/serverless'
Expand Down
Binary file modified research/public/images/block-stm-sealevel/1.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 modified research/public/images/block-stm-sealevel/10.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 modified research/public/images/block-stm-sealevel/11.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 modified research/public/images/block-stm-sealevel/12.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 modified research/public/images/block-stm-sealevel/13.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 modified research/public/images/block-stm-sealevel/14.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 modified research/public/images/block-stm-sealevel/15.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 modified research/public/images/block-stm-sealevel/16.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 modified research/public/images/block-stm-sealevel/17.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 modified research/public/images/block-stm-sealevel/18.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 modified research/public/images/block-stm-sealevel/19.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 modified research/public/images/block-stm-sealevel/2.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 modified research/public/images/block-stm-sealevel/20.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 modified research/public/images/block-stm-sealevel/21.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 modified research/public/images/block-stm-sealevel/22.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 modified research/public/images/block-stm-sealevel/23.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 modified research/public/images/block-stm-sealevel/24.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 modified research/public/images/block-stm-sealevel/25.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 modified research/public/images/block-stm-sealevel/26.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 added research/public/images/block-stm-sealevel/27.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 modified research/public/images/block-stm-sealevel/3.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 modified research/public/images/block-stm-sealevel/4.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 modified research/public/images/block-stm-sealevel/5.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 modified research/public/images/block-stm-sealevel/6.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 modified research/public/images/block-stm-sealevel/7.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 modified research/public/images/block-stm-sealevel/8.png
Binary file modified research/public/images/block-stm-sealevel/9.png
8 changes: 4 additions & 4 deletions research/src/components/layout/BaseHead.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface Props {
ogImage?: URL
}
//const canonicalURL = new URL(Astro.url.pathname, Astro.site);
const canonicalURL = new URL(Astro.url.pathname, Astro.site);
Astro.props.ogImage ??= new URL(
`${Astro.url.origin}/assets/EIPsForNerds7-EIP-7657(SyncCommitteeSlashings).webp`,
Expand All @@ -25,18 +25,18 @@ const { title, description, ogImage } = Astro.props
<meta name="description" content={description} />

<meta property="og:type" content="website" />
<!--<meta property="og:url" content={canonicalURL} /> -->
<meta property="og:url" content={canonicalURL} />
<meta property="og:title" content={title} />
<meta property="og:description" content={description} />
<meta property="og:image" content={ogImage} />

<meta property="twitter:card" content="summary_large_image" />
<!--<meta property="twitter:url" content={canonicalURL} /> -->
<meta property="twitter:url" content={canonicalURL} />
<meta property="twitter:title" content={title} />
<meta property="twitter:description" content={description} />
<meta property="twitter:image" content={ogImage} />

<!--<link rel="canonical" href={canonicalURL} /> -->
<link rel="canonical" href={canonicalURL} />
<link rel="icon" type="image/svg" href="/favicon.svg" />

<script
Expand Down
2 changes: 1 addition & 1 deletion research/src/layouts/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
</form>
<span id="response-message" class="text-sm"></span>
</div>

<script>
document.addEventListener('DOMContentLoaded', () => {
// TODO: this should be moved to another comp. along with the email form
Expand Down

0 comments on commit b45dcf5

Please sign in to comment.