diff options
author | 2022-08-21 01:01:03 -0700 | |
---|---|---|
committer | 2022-08-21 01:01:03 -0700 | |
commit | 8fafc2f9edde09e6bcfd2c59db7266595faf75bf (patch) | |
tree | 3580d13c9885b61ce060cd29b811e5b025323219 /packages/bun-landing/components/Layout.tsx | |
parent | c4580ee2ca8fb883c5357546edad94bc93026248 (diff) | |
download | bun-8fafc2f9edde09e6bcfd2c59db7266595faf75bf.tar.gz bun-8fafc2f9edde09e6bcfd2c59db7266595faf75bf.tar.zst bun-8fafc2f9edde09e6bcfd2c59db7266595faf75bf.zip |
[bun-landing] inline via data uri
Diffstat (limited to 'packages/bun-landing/components/Layout.tsx')
-rw-r--r-- | packages/bun-landing/components/Layout.tsx | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/packages/bun-landing/components/Layout.tsx b/packages/bun-landing/components/Layout.tsx index 2e50ce3d8..3c2e0407a 100644 --- a/packages/bun-landing/components/Layout.tsx +++ b/packages/bun-landing/components/Layout.tsx @@ -1,4 +1,5 @@ import Head from "next/head"; +import { dataURI } from "macro:./dataURI"; export default function Layout({ children }) { return ( @@ -52,13 +53,18 @@ export default function Layout({ children }) { <div id="header-wrap"> <header> <a href="/" id="logo-link" aria-label="home"> - <img height="61px" src="/logo.svg" alt="Bun logo" id="logo" /> <img - height="31.65px" - src="/Bun.png" - srcSet="/Bun.png 1x, /Bun@2x.png 2x" + height="61px" + src={dataURI("../public/logo.svg", "components/Layout.tsx")} + alt="Bun logo" + id="logo" + /> + + <img alt="Bun" id="logo-text" + height="31.65px" + src={dataURI("../public/Bun@2x.png", "components/Layout.tsx")} /> </a> |